From 16e6a4d3ffc68987c96b1acd7e52860947907a93 Mon Sep 17 00:00:00 2001 From: Mathew Merrick Date: Tue, 9 Apr 2024 19:03:48 +0000 Subject: [PATCH 01/13] windows build --- .github/workflows/images.yaml | 2 +- .pipelines/cg-pipeline.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/images.yaml b/.github/workflows/images.yaml index 0643d4b653..6a30a25a1c 100644 --- a/.github/workflows/images.yaml +++ b/.github/workflows/images.yaml @@ -102,7 +102,7 @@ jobs: IMAGE_NAMESPACE=${{ github.repository }} \ PLATFORM=${{ matrix.platform }}/${{ matrix.arch }} \ IMAGE_REGISTRY=${{ vars.ACR_NAME }} \ - WINDOWS_YEARS=${{ matrix.year }} \ + YEAR=${{ matrix.year }} \ BUILDX_ACTION=--push else make retina-image-win \ diff --git a/.pipelines/cg-pipeline.yaml b/.pipelines/cg-pipeline.yaml index 97c2692ac6..147611acdd 100644 --- a/.pipelines/cg-pipeline.yaml +++ b/.pipelines/cg-pipeline.yaml @@ -159,7 +159,7 @@ stages: TARGET=final \ WINDOWS_YEARS=$(year) \ TAG=$(make version) \ - BUILDX_ACTION="-o type=docker,dest=./output/images/$(platform)/$(arch)/$(year)/retina-agent-$VERSION-windows-ltsc$(year)-$(arch).tar" + BUILDX_ACTION="-o type=docker,dest=./output/images/$(platform)/$(arch)/$(year)/retina-agent-$VERSION-windows-ltsc$(year).tar" displayName: "Build Retina Windows Image" - task: PublishBuildArtifacts@1 From 41af651d4f7f84eb60ee411faee5bcaedd907387 Mon Sep 17 00:00:00 2001 From: Mathew Merrick Date: Thu, 9 May 2024 18:12:52 +0000 Subject: [PATCH 02/13] Windows native build --- controller/Dockerfile.windows-native | 13 ++++--------- windows/docker/DockerBuildModule.psm1 | 7 ++++++- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/controller/Dockerfile.windows-native b/controller/Dockerfile.windows-native index d0ce4138f4..86833a79ea 100644 --- a/controller/Dockerfile.windows-native +++ b/controller/Dockerfile.windows-native @@ -6,6 +6,8 @@ ARG BUILDER_IMAGE FROM --platform=windows/amd64 ${BUILDER_IMAGE} as builder # Build args +ARG VERSION +ARG APP_INSIGHTS_ID WORKDIR C:\\retina RUN gcc.exe --version RUN go version @@ -17,19 +19,12 @@ RUN go mod verify ADD . . RUN cp -r c:/pktmon/ pkg/plugin/windows/pktmon/packetmonitorsupport/ RUN ls pkg/plugin/windows/pktmon/packetmonitorsupport/ -ARG VERSION -ARG APP_INSIGHTS_ID -SHELL ["cmd", "/S", "/C"] -ENV VERSION=$VERSION -ENV APP_INSIGHTS_ID=$APP_INSIGHTS_ID - -RUN go build -v -o controller.exe -ldflags="-X main.version=%VERSION% -X main.applicationInsightsID=%APP_INSIGHTS_ID%" .\controller -RUN go build -v -o captureworkload.exe -ldflags="-X main.version=%VERSION% -X main.applicationInsightsID=%APP_INSIGHTS_ID%" .\captureworkload +RUN go build -v -o controller.exe -ldflags "-X main.version="$VERSION" -X "main.applicationInsightsID"="$APP_INSIGHTS_ID"" .\\controller +RUN go build -v -o /usr/bin/captureworkload.exe ./captureworkload/ FROM --platform=windows/amd64 mcr.microsoft.com/windows/nanoserver:ltsc2022 as final ADD https://github.com/microsoft/etl2pcapng/releases/download/v1.10.0/etl2pcapng.exe /etl2pcapng.exe -SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'Continue';"] COPY --from=builder C:\\retina\\controller.exe controller.exe COPY --from=builder C:\\retina\\captureworkload.exe captureworkload.exe CMD ["controller.exe"] diff --git a/windows/docker/DockerBuildModule.psm1 b/windows/docker/DockerBuildModule.psm1 index 4fc1a747d2..61cd1face5 100644 --- a/windows/docker/DockerBuildModule.psm1 +++ b/windows/docker/DockerBuildModule.psm1 @@ -16,7 +16,12 @@ function Get-GitVersion { } else { # If the current commit is not tagged, return the current tag followed by the SHA - return $sha + if ($tag) { + return "$tag-$sha" + } + else { + return $sha + } } } From 0cc07e10d99150ef77cd115f63b629a2f736c342 Mon Sep 17 00:00:00 2001 From: Mathew Merrick Date: Thu, 9 May 2024 21:45:46 +0000 Subject: [PATCH 03/13] print version --- controller/Dockerfile.windows-native | 1 + 1 file changed, 1 insertion(+) diff --git a/controller/Dockerfile.windows-native b/controller/Dockerfile.windows-native index 86833a79ea..4d0a8ea4f4 100644 --- a/controller/Dockerfile.windows-native +++ b/controller/Dockerfile.windows-native @@ -19,6 +19,7 @@ RUN go mod verify ADD . . RUN cp -r c:/pktmon/ pkg/plugin/windows/pktmon/packetmonitorsupport/ RUN ls pkg/plugin/windows/pktmon/packetmonitorsupport/ +RUN Write-Host "Building building version $VERSION" RUN go build -v -o controller.exe -ldflags "-X main.version="$VERSION" -X "main.applicationInsightsID"="$APP_INSIGHTS_ID"" .\\controller RUN go build -v -o /usr/bin/captureworkload.exe ./captureworkload/ From f98562a4b6a7058dfefe237ffb8fdfe1ba0c7be3 Mon Sep 17 00:00:00 2001 From: Mathew Merrick Date: Thu, 9 May 2024 22:30:13 +0000 Subject: [PATCH 04/13] version --- controller/Dockerfile.windows-native | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller/Dockerfile.windows-native b/controller/Dockerfile.windows-native index 4d0a8ea4f4..043283825e 100644 --- a/controller/Dockerfile.windows-native +++ b/controller/Dockerfile.windows-native @@ -20,7 +20,7 @@ ADD . . RUN cp -r c:/pktmon/ pkg/plugin/windows/pktmon/packetmonitorsupport/ RUN ls pkg/plugin/windows/pktmon/packetmonitorsupport/ RUN Write-Host "Building building version $VERSION" -RUN go build -v -o controller.exe -ldflags "-X main.version="$VERSION" -X "main.applicationInsightsID"="$APP_INSIGHTS_ID"" .\\controller +RUN go build -v -o controller.exe -ldflags "-X main.version="$VERSION"" -X "main.applicationInsightsID"="$APP_INSIGHTS_ID"" .\\controller RUN go build -v -o /usr/bin/captureworkload.exe ./captureworkload/ From c2353fd55f3ef63eef882d9b95f6df51460076eb Mon Sep 17 00:00:00 2001 From: Mathew Merrick Date: Fri, 10 May 2024 11:30:34 -0700 Subject: [PATCH 05/13] fix ld flag parsing and breakout windows years --- .gitignore | 2 ++ .pipelines/cg-pipeline.yaml | 2 +- controller/Dockerfile.windows-native | 14 +++++++++----- windows/docker/DockerBuildModule.psm1 | 7 +------ 4 files changed, 13 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 4479235205..8b70eedbf7 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,5 @@ dist/ bin/ image-metadata-*.json + +./ diff --git a/.pipelines/cg-pipeline.yaml b/.pipelines/cg-pipeline.yaml index 147611acdd..97c2692ac6 100644 --- a/.pipelines/cg-pipeline.yaml +++ b/.pipelines/cg-pipeline.yaml @@ -159,7 +159,7 @@ stages: TARGET=final \ WINDOWS_YEARS=$(year) \ TAG=$(make version) \ - BUILDX_ACTION="-o type=docker,dest=./output/images/$(platform)/$(arch)/$(year)/retina-agent-$VERSION-windows-ltsc$(year).tar" + BUILDX_ACTION="-o type=docker,dest=./output/images/$(platform)/$(arch)/$(year)/retina-agent-$VERSION-windows-ltsc$(year)-$(arch).tar" displayName: "Build Retina Windows Image" - task: PublishBuildArtifacts@1 diff --git a/controller/Dockerfile.windows-native b/controller/Dockerfile.windows-native index 043283825e..d0ce4138f4 100644 --- a/controller/Dockerfile.windows-native +++ b/controller/Dockerfile.windows-native @@ -6,8 +6,6 @@ ARG BUILDER_IMAGE FROM --platform=windows/amd64 ${BUILDER_IMAGE} as builder # Build args -ARG VERSION -ARG APP_INSIGHTS_ID WORKDIR C:\\retina RUN gcc.exe --version RUN go version @@ -19,13 +17,19 @@ RUN go mod verify ADD . . RUN cp -r c:/pktmon/ pkg/plugin/windows/pktmon/packetmonitorsupport/ RUN ls pkg/plugin/windows/pktmon/packetmonitorsupport/ -RUN Write-Host "Building building version $VERSION" -RUN go build -v -o controller.exe -ldflags "-X main.version="$VERSION"" -X "main.applicationInsightsID"="$APP_INSIGHTS_ID"" .\\controller -RUN go build -v -o /usr/bin/captureworkload.exe ./captureworkload/ +ARG VERSION +ARG APP_INSIGHTS_ID +SHELL ["cmd", "/S", "/C"] +ENV VERSION=$VERSION +ENV APP_INSIGHTS_ID=$APP_INSIGHTS_ID + +RUN go build -v -o controller.exe -ldflags="-X main.version=%VERSION% -X main.applicationInsightsID=%APP_INSIGHTS_ID%" .\controller +RUN go build -v -o captureworkload.exe -ldflags="-X main.version=%VERSION% -X main.applicationInsightsID=%APP_INSIGHTS_ID%" .\captureworkload FROM --platform=windows/amd64 mcr.microsoft.com/windows/nanoserver:ltsc2022 as final ADD https://github.com/microsoft/etl2pcapng/releases/download/v1.10.0/etl2pcapng.exe /etl2pcapng.exe +SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'Continue';"] COPY --from=builder C:\\retina\\controller.exe controller.exe COPY --from=builder C:\\retina\\captureworkload.exe captureworkload.exe CMD ["controller.exe"] diff --git a/windows/docker/DockerBuildModule.psm1 b/windows/docker/DockerBuildModule.psm1 index 61cd1face5..4fc1a747d2 100644 --- a/windows/docker/DockerBuildModule.psm1 +++ b/windows/docker/DockerBuildModule.psm1 @@ -16,12 +16,7 @@ function Get-GitVersion { } else { # If the current commit is not tagged, return the current tag followed by the SHA - if ($tag) { - return "$tag-$sha" - } - else { - return $sha - } + return $sha } } From 7f23e8354e7d0335c0c898582ca873169d758f17 Mon Sep 17 00:00:00 2001 From: "Mathew Merrick (from Dev Box)" Date: Fri, 5 Apr 2024 17:26:22 -0700 Subject: [PATCH 06/13] initial pktmon experiment --- .gitignore | 3 +- NOTICE.txt | 50642 ++++++++-------- SUPPORT.md | 18 +- controller/Dockerfile.windows-2022 | 4 +- controller/Dockerfile.windows-native | 1 - .../Dockerfile.windows-native.dockerignore | 4 +- pkg/metrics/types.go | 2 + pkg/metrics/types_linux.go | 59 + pkg/metrics/types_windows.go | 945 + pkg/module/metrics/drops.go | 2 +- pkg/plugin/registry/registry_windows.go | 2 + .../windows/pktmon/pktmon_plugin_windows.go | 132 + pkg/plugin/windows/pktmon/pktmon_windows.go | 265 + pkg/plugin/windows/pktmon/types.go | 42 + pkg/utils/flow_utils.go | 15 + windows/setkubeconfigpath.ps1 | 22 +- 16 files changed, 26808 insertions(+), 25350 deletions(-) create mode 100644 pkg/metrics/types_linux.go create mode 100644 pkg/metrics/types_windows.go create mode 100644 pkg/plugin/windows/pktmon/pktmon_plugin_windows.go create mode 100644 pkg/plugin/windows/pktmon/pktmon_windows.go create mode 100644 pkg/plugin/windows/pktmon/types.go diff --git a/.gitignore b/.gitignore index 8b70eedbf7..27e2f7832c 100644 --- a/.gitignore +++ b/.gitignore @@ -37,5 +37,4 @@ dist/ bin/ image-metadata-*.json - -./ +*packetmonitorsupport*/ diff --git a/NOTICE.txt b/NOTICE.txt index 32ccfb4a64..573328fb76 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -1,48 +1,48 @@ -NOTICES AND INFORMATION -Do Not Translate or Localize - -This software incorporates material from third parties. -Microsoft makes certain open source code available at https://3rdpartysource.microsoft.com, -or you may send a check or money order for US $5.00, including the product name, -the open source component name, platform, and version number, to: - -Source Code Compliance Team -Microsoft Corporation -One Microsoft Way -Redmond, WA 98052 -USA - -Notwithstanding any other terms, you may reverse engineer this software to the extent -required to debug changes to any libraries licensed under the GNU Lesser General Public License. - ---------------------------------------------------------- - -tslib 2.6.2 - 0BSD -https://www.typescriptlang.org/ - -Copyright (c) Microsoft Corporation - -Copyright (c) Microsoft Corporation. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@ampproject/remapping 2.2.1 - Apache-2.0 -https://github.com/ampproject/remapping#readme - - +NOTICES AND INFORMATION +Do Not Translate or Localize + +This software incorporates material from third parties. +Microsoft makes certain open source code available at https://3rdpartysource.microsoft.com, +or you may send a check or money order for US $5.00, including the product name, +the open source component name, platform, and version number, to: + +Source Code Compliance Team +Microsoft Corporation +One Microsoft Way +Redmond, WA 98052 +USA + +Notwithstanding any other terms, you may reverse engineer this software to the extent +required to debug changes to any libraries licensed under the GNU Lesser General Public License. + +--------------------------------------------------------- + +tslib 2.6.2 - 0BSD +https://www.typescriptlang.org/ + +Copyright (c) Microsoft Corporation + +Copyright (c) Microsoft Corporation. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@ampproject/remapping 2.2.1 - Apache-2.0 +https://github.com/ampproject/remapping#readme + + Apache License Version 2.0, January 2004 @@ -245,18 +245,18 @@ https://github.com/ampproject/remapping#readme WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/leb128 1.11.6 - Apache-2.0 -https://github.com/xtuc/webassemblyjs#readme - -Copyright 2012 The Obvious Corporation -Copyright 2012 The Obvious Corporation. http://obvious.com - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/leb128 1.11.6 - Apache-2.0 +https://github.com/xtuc/webassemblyjs#readme + +Copyright 2012 The Obvious Corporation +Copyright 2012 The Obvious Corporation. http://obvious.com + Copyright 2012 The Obvious Corporation. http://obvious.com/ @@ -451,16 +451,16 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@xtuc/long 4.2.2 - Apache-2.0 -https://github.com/dcodeIO/long.js#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@xtuc/long 4.2.2 - Apache-2.0 +https://github.com/dcodeIO/long.js#readme + + Apache License Version 2.0, January 2004 @@ -663,16 +663,16 @@ https://github.com/dcodeIO/long.js#readme WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ansi-html-community 0.0.8 - Apache-2.0 -https://github.com/mahdyar/ansi-html-community - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ansi-html-community 0.0.8 - Apache-2.0 +https://github.com/mahdyar/ansi-html-community + + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -875,21 +875,21 @@ Apache License See the License for the specific language governing permissions and limitations under the License. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo%2Fcompute/metadata v0.2.3 - Apache-2.0 - - -Copyright 2014 Google LLC -Copyright 2016 Google LLC -Copyright 2018 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo%2Fcompute/metadata v0.2.3 - Apache-2.0 + + +Copyright 2014 Google LLC +Copyright 2016 Google LLC +Copyright 2018 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC + Apache License Version 2.0, January 2004 @@ -986,19 +986,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo%2Fdataproc/v2 v2.3.0 - Apache-2.0 - - -Copyright 2019 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo%2Fdataproc/v2 v2.3.0 - Apache-2.0 + + +Copyright 2019 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -1095,18 +1095,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo%2Frecaptchaenterprise/v2 v2.9.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo%2Frecaptchaenterprise/v2 v2.9.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -1203,20 +1203,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo%2Fvision/v2 v2.7.5 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2017 Google Inc. -Copyright 2019 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo%2Fvision/v2 v2.7.5 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2017 Google Inc. +Copyright 2019 Google LLC. + Apache License Version 2.0, January 2004 @@ -1313,18 +1313,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/accessapproval v1.7.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/accessapproval v1.7.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -1421,18 +1421,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/accesscontextmanager v1.8.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/accesscontextmanager v1.8.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -1529,18 +1529,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/aiplatform v1.58.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/aiplatform v1.58.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -1637,18 +1637,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/analytics v0.22.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/analytics v0.22.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -1745,20 +1745,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/apigateway v1.6.4 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/apigateway v1.6.4 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -1855,19 +1855,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/apigeeconnect v1.6.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/apigeeconnect v1.6.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -1964,18 +1964,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/apigeeregistry v0.8.2 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/apigeeregistry v0.8.2 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -2072,19 +2072,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/appengine v1.8.4 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/appengine v1.8.4 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -2181,19 +2181,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/area120 v0.8.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/area120 v0.8.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -2290,19 +2290,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/artifactregistry v1.14.6 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/artifactregistry v1.14.6 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -2399,18 +2399,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/asset v1.17.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/asset v1.17.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -2507,18 +2507,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/assuredworkloads v1.11.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/assuredworkloads v1.11.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -2615,20 +2615,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/automl v1.13.4 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/automl v1.13.4 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -2725,18 +2725,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/baremetalsolution v1.2.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/baremetalsolution v1.2.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -2833,18 +2833,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/batch v1.7.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/batch v1.7.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -2941,18 +2941,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/beyondcorp v1.0.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/beyondcorp v1.0.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -3049,26 +3049,26 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/bigquery v1.58.0 - Apache-2.0 - - -Copyright 2015 Google LLC -Copyright 2016 Google LLC -Copyright 2017 Google LLC -Copyright 2018 Google LLC -Copyright 2019 Google LLC -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2024 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/bigquery v1.58.0 - Apache-2.0 + + +Copyright 2015 Google LLC +Copyright 2016 Google LLC +Copyright 2017 Google LLC +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2024 Google LLC + Apache License Version 2.0, January 2004 @@ -3165,18 +3165,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/billing v1.18.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/billing v1.18.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -3273,19 +3273,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/binaryauthorization v1.8.0 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/binaryauthorization v1.8.0 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -3382,18 +3382,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/certificatemanager v1.7.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/certificatemanager v1.7.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -3490,18 +3490,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/channel v1.17.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/channel v1.17.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -3598,19 +3598,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/cloudbuild v1.15.0 - Apache-2.0 - - -Copyright 2019 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/cloudbuild v1.15.0 - Apache-2.0 + + +Copyright 2019 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -3707,18 +3707,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/clouddms v1.7.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/clouddms v1.7.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -3815,18 +3815,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/cloudtasks v1.12.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/cloudtasks v1.12.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -3923,18 +3923,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/compute v1.23.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/compute v1.23.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -4031,18 +4031,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/contactcenterinsights v1.12.1 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/contactcenterinsights v1.12.1 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -4139,20 +4139,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/container v1.29.0 - Apache-2.0 - - -Copyright 2014 Google LLC -Copyright 2018 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/container v1.29.0 - Apache-2.0 + + +Copyright 2014 Google LLC +Copyright 2018 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -4249,20 +4249,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/containeranalysis v0.11.3 - Apache-2.0 - - -Copyright 2019 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2018 The Grafeas Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/containeranalysis v0.11.3 - Apache-2.0 + + +Copyright 2019 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2018 The Grafeas Authors + Apache License Version 2.0, January 2004 @@ -4359,20 +4359,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/datacatalog v1.19.2 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2024 Google LLC -copyright message ( 61f23b2 (https://github.com/googleapis/google-cloud-go/commit/61f23b2167dbe9e3e031db12ccf46b7eac639fa3)) - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/datacatalog v1.19.2 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2024 Google LLC +copyright message ( 61f23b2 (https://github.com/googleapis/google-cloud-go/commit/61f23b2167dbe9e3e031db12ccf46b7eac639fa3)) + Apache License Version 2.0, January 2004 @@ -4469,18 +4469,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/dataflow v0.9.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/dataflow v0.9.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -4577,18 +4577,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/dataform v0.9.1 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/dataform v0.9.1 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -4685,19 +4685,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/datafusion v1.7.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/datafusion v1.7.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -4794,19 +4794,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/datalabeling v0.8.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2019 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/datalabeling v0.8.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2019 Google LLC. + Apache License Version 2.0, January 2004 @@ -4903,18 +4903,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/dataplex v1.14.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/dataplex v1.14.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -5011,19 +5011,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/dataqna v0.8.4 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/dataqna v0.8.4 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -5120,23 +5120,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/datastore v1.15.0 - Apache-2.0 - - -Copyright 2014 Google LLC -Copyright 2016 Google LLC -Copyright 2017 Google LLC -Copyright 2018 Google LLC -Copyright 2019 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/datastore v1.15.0 - Apache-2.0 + + +Copyright 2014 Google LLC +Copyright 2016 Google LLC +Copyright 2017 Google LLC +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -5233,19 +5233,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/datastream v1.10.3 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/datastream v1.10.3 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -5342,19 +5342,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/deploy v1.17.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2024 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/deploy v1.17.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2024 Google LLC + Apache License Version 2.0, January 2004 @@ -5451,20 +5451,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/dialogflow v1.48.1 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2024 Google LLC -copyright ( 96c9d7e (https://github.com/googleapis/google-cloud-go/commit/96c9d7ee74af075fdd17b02233ac92fba6d89988)) - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/dialogflow v1.48.1 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2024 Google LLC +copyright ( 96c9d7e (https://github.com/googleapis/google-cloud-go/commit/96c9d7ee74af075fdd17b02233ac92fba6d89988)) + Apache License Version 2.0, January 2004 @@ -5561,18 +5561,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/dlp v1.11.1 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/dlp v1.11.1 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -5669,18 +5669,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/documentai v1.23.7 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/documentai v1.23.7 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -5777,19 +5777,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/domains v0.9.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/domains v0.9.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -5886,18 +5886,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/edgecontainer v1.1.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/edgecontainer v1.1.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -5994,23 +5994,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/errorreporting v0.3.0 - Apache-2.0 - - -Copyright 2016 Google LLC -Copyright 2017 Google LLC -Copyright 2018 Google LLC -Copyright 2019 Google LLC -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/errorreporting v0.3.0 - Apache-2.0 + + +Copyright 2016 Google LLC +Copyright 2017 Google LLC +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC + Apache License Version 2.0, January 2004 @@ -6107,18 +6107,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/essentialcontacts v1.6.5 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/essentialcontacts v1.6.5 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -6215,18 +6215,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/eventarc v1.13.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/eventarc v1.13.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -6323,18 +6323,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/filestore v1.8.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/filestore v1.8.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -6431,23 +6431,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/firestore v1.14.0 - Apache-2.0 - - -Copyright 2017 Google LLC -Copyright 2018 Google LLC -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2019 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/firestore v1.14.0 - Apache-2.0 + + +Copyright 2017 Google LLC +Copyright 2018 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2019 Google LLC. + Apache License Version 2.0, January 2004 @@ -6544,19 +6544,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/functions v1.15.4 - Apache-2.0 - - -Copyright 2018 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/functions v1.15.4 - Apache-2.0 + + +Copyright 2018 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -6653,18 +6653,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/gkebackup v1.3.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/gkebackup v1.3.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -6761,19 +6761,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/gkeconnect v0.8.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/gkeconnect v0.8.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -6870,18 +6870,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/gkehub v0.14.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/gkehub v0.14.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -6978,18 +6978,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/gkemulticloud v1.1.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/gkemulticloud v1.1.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -7086,19 +7086,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/gsuiteaddons v1.6.4 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/gsuiteaddons v1.6.4 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -7195,22 +7195,22 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/iam v1.1.5 - Apache-2.0 - - -Copyright 2016 Google LLC -Copyright 2018 Google LLC -Copyright 2019 Google LLC -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/iam v1.1.5 - Apache-2.0 + + +Copyright 2016 Google LLC +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -7307,18 +7307,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/iap v1.9.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/iap v1.9.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -7415,19 +7415,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/ids v1.4.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/ids v1.4.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -7524,19 +7524,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/iot v1.7.4 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/iot v1.7.4 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -7633,20 +7633,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/kms v1.15.5 - Apache-2.0 - - -Copyright 2018 Google LLC -Copyright 2019 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/kms v1.15.5 - Apache-2.0 + + +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -7743,18 +7743,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/language v1.12.2 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/language v1.12.2 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -7851,18 +7851,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/lifesciences v0.9.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/lifesciences v0.9.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -7959,23 +7959,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/logging v1.9.0 - Apache-2.0 - - -Copyright 2016 Google LLC -Copyright 2017 Google LLC -Copyright 2018 Google LLC -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/logging v1.9.0 - Apache-2.0 + + +Copyright 2016 Google LLC +Copyright 2017 Google LLC +Copyright 2018 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -8072,21 +8072,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/longrunning v0.5.4 - Apache-2.0 - - -Copyright 2016 Google LLC -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2020, Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/longrunning v0.5.4 - Apache-2.0 + + +Copyright 2016 Google LLC +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2020, Google LLC + Apache License Version 2.0, January 2004 @@ -8183,19 +8183,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/managedidentities v1.6.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2019 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/managedidentities v1.6.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2019 Google LLC. + Apache License Version 2.0, January 2004 @@ -8292,19 +8292,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/maps v1.6.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2024 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/maps v1.6.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2024 Google LLC + Apache License Version 2.0, January 2004 @@ -8401,19 +8401,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/mediatranslation v0.8.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/mediatranslation v0.8.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -8510,18 +8510,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/memcache v1.10.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/memcache v1.10.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -8618,18 +8618,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/metastore v1.13.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/metastore v1.13.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -8726,21 +8726,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/monitoring v1.17.0 - Apache-2.0 - - -Copyright 2018 Google LLC -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/monitoring v1.17.0 - Apache-2.0 + + +Copyright 2018 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -8837,19 +8837,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/networkconnectivity v1.14.3 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/networkconnectivity v1.14.3 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -8946,18 +8946,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/networkmanagement v1.9.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/networkmanagement v1.9.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -9054,19 +9054,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/networksecurity v0.9.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/networksecurity v0.9.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -9163,18 +9163,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/notebooks v1.11.2 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/notebooks v1.11.2 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -9271,18 +9271,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/optimization v1.6.2 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/optimization v1.6.2 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -9379,18 +9379,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/orchestration v1.8.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/orchestration v1.8.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -9487,19 +9487,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/orgpolicy v1.12.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2019 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/orgpolicy v1.12.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2019 Google LLC. + Apache License Version 2.0, January 2004 @@ -9596,20 +9596,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/osconfig v1.12.4 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/osconfig v1.12.4 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -9706,19 +9706,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/oslogin v1.13.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2024 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/oslogin v1.13.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2024 Google LLC + Apache License Version 2.0, January 2004 @@ -9815,19 +9815,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/phishingprotection v0.8.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2019 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/phishingprotection v0.8.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2019 Google LLC. + Apache License Version 2.0, January 2004 @@ -9924,18 +9924,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/policytroubleshooter v1.10.2 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/policytroubleshooter v1.10.2 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -10032,19 +10032,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/privatecatalog v0.9.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/privatecatalog v0.9.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -10141,26 +10141,26 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/pubsub v1.34.0 - Apache-2.0 - - -Copyright 2014 Google LLC -Copyright 2016 Google LLC -Copyright 2017 Google LLC -Copyright 2018 Google LLC -Copyright 2019 Google LLC -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2024 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/pubsub v1.34.0 - Apache-2.0 + + +Copyright 2014 Google LLC +Copyright 2016 Google LLC +Copyright 2017 Google LLC +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2024 Google LLC + Apache License Version 2.0, January 2004 @@ -10257,20 +10257,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/pubsublite v1.8.1 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/pubsublite v1.8.1 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -10367,19 +10367,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/recommendationengine v0.8.4 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/recommendationengine v0.8.4 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -10476,18 +10476,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/recommender v1.12.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/recommender v1.12.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -10584,18 +10584,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/redis v1.14.1 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/redis v1.14.1 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -10692,19 +10692,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/resourcemanager v1.9.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2019 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/resourcemanager v1.9.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2019 Google LLC. + Apache License Version 2.0, January 2004 @@ -10801,19 +10801,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/resourcesettings v1.6.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/resourcesettings v1.6.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -10910,19 +10910,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/retail v1.14.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/retail v1.14.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -11019,18 +11019,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/run v1.3.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/run v1.3.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -11127,18 +11127,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/scheduler v1.10.5 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/scheduler v1.10.5 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -11235,20 +11235,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/secretmanager v1.11.4 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/secretmanager v1.11.4 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -11345,18 +11345,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/security v1.15.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/security v1.15.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -11453,20 +11453,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/securitycenter v1.24.3 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/securitycenter v1.24.3 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -11563,18 +11563,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/servicedirectory v1.11.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/servicedirectory v1.11.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -11671,18 +11671,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/shell v1.7.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/shell v1.7.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -11779,18 +11779,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/speech v1.21.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/speech v1.21.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -11887,25 +11887,25 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/storage v1.35.1 - Apache-2.0 - - -Copyright 2014 Google LLC -Copyright 2016 Google LLC -Copyright 2017 Google LLC -Copyright 2018 Google LLC -Copyright 2019 Google LLC -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/storage v1.35.1 - Apache-2.0 + + +Copyright 2014 Google LLC +Copyright 2016 Google LLC +Copyright 2017 Google LLC +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -12002,18 +12002,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/storagetransfer v1.10.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/storagetransfer v1.10.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -12110,18 +12110,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/talent v1.6.5 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/talent v1.6.5 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -12218,18 +12218,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/texttospeech v1.7.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/texttospeech v1.7.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -12326,18 +12326,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/tpu v1.6.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/tpu v1.6.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -12434,20 +12434,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/trace v1.10.4 - Apache-2.0 - - -Copyright 2018 Google LLC -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/trace v1.10.4 - Apache-2.0 + + +Copyright 2018 Google LLC +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -12544,19 +12544,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/translate v1.10.0 - Apache-2.0 - - -Copyright 2016 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/translate v1.10.0 - Apache-2.0 + + +Copyright 2016 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -12653,18 +12653,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/video v1.20.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/video v1.20.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -12761,20 +12761,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/videointelligence v1.11.4 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2019 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/videointelligence v1.11.4 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2019 Google LLC. + Apache License Version 2.0, January 2004 @@ -12871,18 +12871,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/vmmigration v1.7.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/vmmigration v1.7.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -12979,18 +12979,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/vmwareengine v1.0.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/vmwareengine v1.0.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -13087,18 +13087,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/vpcaccess v1.7.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/vpcaccess v1.7.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -13195,19 +13195,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/webrisk v1.9.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2019 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/webrisk v1.9.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2019 Google LLC. + Apache License Version 2.0, January 2004 @@ -13304,18 +13304,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/websecurityscanner v1.6.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/websecurityscanner v1.6.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -13412,19 +13412,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/workflows v1.12.3 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/workflows v1.12.3 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -13521,29 +13521,29 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com/go v0.112.0 - Apache-2.0 - - -Copyright 2014 Google LLC -Copyright 2016 Google LLC -Copyright 2017 Google LLC -Copyright 2018 Google LLC -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2018 Google Inc. -Copyright 2019 Google LLC. -Copyright 2023 Google LLC. -Copyright 2017 The Go Authors -Copyright 2020 The Go Authors -Copyright (c) 2020 The Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com/go v0.112.0 - Apache-2.0 + + +Copyright 2014 Google LLC +Copyright 2016 Google LLC +Copyright 2017 Google LLC +Copyright 2018 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2018 Google Inc. +Copyright 2019 Google LLC. +Copyright 2023 Google LLC. +Copyright 2017 The Go Authors +Copyright 2020 The Go Authors +Copyright (c) 2020 The Go Authors + Apache License Version 2.0, January 2004 @@ -13640,18 +13640,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -code.cloudfoundry.org/clock v1.0.0 - Apache-2.0 - - -Copyright (c) 2015 Pivotal Software, Inc. -Copyright (c) 2015-Present CloudFoundry.org Foundation, Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +code.cloudfoundry.org/clock v1.0.0 - Apache-2.0 + + +Copyright (c) 2015 Pivotal Software, Inc. +Copyright (c) 2015-Present CloudFoundry.org Foundation, Inc. + Apache License Version 2.0, January 2004 @@ -13748,17 +13748,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -faye-websocket 0.11.4 - Apache-2.0 -https://github.com/faye/faye-websocket-node - -Copyright 2010-2021 James Coglan - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +faye-websocket 0.11.4 - Apache-2.0 +https://github.com/faye/faye-websocket-node + +Copyright 2010-2021 James Coglan + Copyright 2010-2021 James Coglan Licensed under the Apache License, Version 2.0 (the "License"); you may not use @@ -13771,123 +13771,17 @@ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fadalogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 - Apache-2.0 - - -Copyright 2023 The go-fuzz-headers - -Apache License - -Version 2.0, January 2004 - -http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - - - "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - - - - "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - - - "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - - - - "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. - - - - "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - +--------------------------------------------------------- - "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. +--------------------------------------------------------- - +github.com%2Fadalogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 - Apache-2.0 - "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - +Copyright 2023 The go-fuzz-headers - "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - - - - "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." - - - - "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: - - (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. - - You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - -To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); - -you may not use this file except in compliance with the License. - -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software - -distributed under the License is distributed on an "AS IS" BASIS, - -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - -See the License for the specific language governing permissions and - -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fadamkorcz/go-118-fuzz-build v0.0.0-20230306123547-8075edf89bb0 - Apache-2.0 - - - Apache License Version 2.0, January 2004 @@ -13984,16 +13878,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2%2Ffeature%2Fec2/imds v1.14.10 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fadamkorcz/go-118-fuzz-build v0.0.0-20230306123547-8075edf89bb0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -14090,16 +13984,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2%2Finternal%2Fendpoints/v2 v2.5.9 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2%2Ffeature%2Fec2/imds v1.14.10 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -14196,16 +14090,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2%2Finternal/configsources v1.2.9 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2%2Finternal%2Fendpoints/v2 v2.5.9 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -14302,16 +14196,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2%2Finternal/ini v1.7.2 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2%2Finternal/configsources v1.2.9 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -14408,16 +14302,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Finternal/accept-encoding v1.10.4 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2%2Finternal/ini v1.7.2 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -14514,16 +14408,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Finternal/presigned-url v1.10.9 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Finternal/accept-encoding v1.10.4 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -14620,16 +14514,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2%2Fservice/ec2 v1.141.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Finternal/presigned-url v1.10.9 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -14726,16 +14620,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2%2Fservice/sso v1.18.5 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2%2Fservice/ec2 v1.141.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -14832,16 +14726,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2%2Fservice/ssooidc v1.21.5 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2%2Fservice/sso v1.18.5 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -14938,16 +14832,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2%2Fservice/sts v1.26.5 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2%2Fservice/ssooidc v1.21.5 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -15044,16 +14938,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2/config v1.26.1 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2%2Fservice/sts v1.26.5 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -15150,16 +15044,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2/credentials v1.16.12 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2/config v1.26.1 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -15256,20 +15150,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws/aws-sdk-go-v2 v1.24.0 - Apache-2.0 - - -Copyright 2013 The Go Authors -Copyright 2014-2015 Stripe, Inc. -Copyright (c) 2009 The Go Authors -Copyright 2015 Amazon.com, Inc. or its affiliates - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2/credentials v1.16.12 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -15366,22 +15256,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2faws/smithy-go v1.19.0 - Apache-2.0 - - -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -Copyright 2013 The Go Authors -Copyright 2016 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright Amazon.com, Inc. or its affiliates - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws/aws-sdk-go-v2 v1.24.0 - Apache-2.0 + + +Copyright 2013 The Go Authors +Copyright 2014-2015 Stripe, Inc. +Copyright (c) 2009 The Go Authors +Copyright 2015 Amazon.com, Inc. or its affiliates + Apache License Version 2.0, January 2004 @@ -15478,16 +15366,22 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fgo-autorest%2Fautorest%2Fazure/auth v0.5.12 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2faws/smithy-go v1.19.0 - Apache-2.0 + + +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +Copyright 2013 The Go Authors +Copyright 2016 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright Amazon.com, Inc. or its affiliates + Apache License Version 2.0, January 2004 @@ -15584,18 +15478,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fgo-autorest%2Fautorest%2Fazure/cli v0.4.5 - Apache-2.0 - - -Copyright 2015 Microsoft Corporation -Copyright 2017 Microsoft Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fgo-autorest%2Fautorest%2Fazure/auth v0.5.12 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -15692,18 +15584,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fgo-autorest%2Fautorest/adal v0.9.23 - Apache-2.0 - - -Copyright 2015 Microsoft Corporation -Copyright 2017 Microsoft Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fgo-autorest%2Fautorest%2Fazure/cli v0.4.5 - Apache-2.0 + + +Copyright 2015 Microsoft Corporation +Copyright 2017 Microsoft Corporation + Apache License Version 2.0, January 2004 @@ -15800,18 +15692,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fgo-autorest%2Fautorest/date v0.3.0 - Apache-2.0 - - -Copyright 2015 Microsoft Corporation -Copyright 2017 Microsoft Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fgo-autorest%2Fautorest/adal v0.9.23 - Apache-2.0 + + +Copyright 2015 Microsoft Corporation +Copyright 2017 Microsoft Corporation + Apache License Version 2.0, January 2004 @@ -15908,18 +15800,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fgo-autorest%2Fautorest/mocks v0.4.2 - Apache-2.0 - - -Copyright 2015 Microsoft Corporation -Copyright 2017 Microsoft Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fgo-autorest%2Fautorest/date v0.3.0 - Apache-2.0 + + +Copyright 2015 Microsoft Corporation +Copyright 2017 Microsoft Corporation + Apache License Version 2.0, January 2004 @@ -16016,18 +15908,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fgo-autorest%2Fautorest/to v0.4.0 - Apache-2.0 - - -Copyright 2015 Microsoft Corporation -Copyright 2017 Microsoft Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fgo-autorest%2Fautorest/mocks v0.4.2 - Apache-2.0 + + +Copyright 2015 Microsoft Corporation +Copyright 2017 Microsoft Corporation + Apache License Version 2.0, January 2004 @@ -16124,18 +16016,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fgo-autorest%2Fautorest/validation v0.3.1 - Apache-2.0 - - -Copyright 2015 Microsoft Corporation -Copyright 2017 Microsoft Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fgo-autorest%2Fautorest/to v0.4.0 - Apache-2.0 + + +Copyright 2015 Microsoft Corporation +Copyright 2017 Microsoft Corporation + Apache License Version 2.0, January 2004 @@ -16232,18 +16124,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fgo-autorest/autorest v0.11.29 - Apache-2.0 - - -Copyright 2015 Microsoft Corporation -Copyright 2017 Microsoft Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fgo-autorest%2Fautorest/validation v0.3.1 - Apache-2.0 + + +Copyright 2015 Microsoft Corporation +Copyright 2017 Microsoft Corporation + Apache License Version 2.0, January 2004 @@ -16340,18 +16232,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fgo-autorest/logger v0.2.1 - Apache-2.0 - - -Copyright 2015 Microsoft Corporation -Copyright 2017 Microsoft Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fgo-autorest/autorest v0.11.29 - Apache-2.0 + + +Copyright 2015 Microsoft Corporation +Copyright 2017 Microsoft Corporation + Apache License Version 2.0, January 2004 @@ -16448,19 +16340,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fgo-autorest/tracing v0.6.0 - Apache-2.0 - - -Copyright 2015 Microsoft Corporation -Copyright 2017 Microsoft Corporation -Copyright 2018 Microsoft Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fgo-autorest/logger v0.2.1 - Apache-2.0 + + +Copyright 2015 Microsoft Corporation +Copyright 2017 Microsoft Corporation + Apache License Version 2.0, January 2004 @@ -16557,18 +16448,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure/go-autorest v14.2.0+incompatible - Apache-2.0 - - -Copyright 2015 Microsoft Corporation -Copyright 2017 Microsoft Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fgo-autorest/tracing v0.6.0 - Apache-2.0 + + +Copyright 2015 Microsoft Corporation +Copyright 2017 Microsoft Corporation +Copyright 2018 Microsoft Corporation + Apache License Version 2.0, January 2004 @@ -16665,21 +16557,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcensus-instrumentation/opencensus-proto v0.4.1 - Apache-2.0 - - -Copyright 2017, OpenCensus -Copyright 2018, OpenCensus -Copyright 2019, OpenCensus -Copyright 2016-17, OpenCensus -Copyright 2016-18, OpenCensus - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure/go-autorest v14.2.0+incompatible - Apache-2.0 + + +Copyright 2015 Microsoft Corporation +Copyright 2017 Microsoft Corporation + Apache License Version 2.0, January 2004 @@ -16776,17 +16665,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcilium/coverbee v0.3.2 - Apache-2.0 - - -Copyright 2013 The Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcensus-instrumentation/opencensus-proto v0.4.1 - Apache-2.0 + + +Copyright 2017, OpenCensus +Copyright 2018, OpenCensus +Copyright 2019, OpenCensus +Copyright 2016-17, OpenCensus +Copyright 2016-18, OpenCensus + Apache License Version 2.0, January 2004 @@ -16883,17 +16776,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fcilium/fake v0.5.0 - Apache-2.0 - - -Copyright Authors of Cilium - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcilium/coverbee v0.3.2 - Apache-2.0 + + +Copyright 2013 The Go Authors + Apache License Version 2.0, January 2004 @@ -16990,22 +16883,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcilium/proxy v0.0.0-20231031145409-f19708f3d018 - Apache-2.0 - - -Copyright 2018 -Copyright 2020 -Copyright 2017-2021 -Copyright Authors of Cilium -Copyright 2019 The Bazel Authors -Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fcilium/fake v0.5.0 - Apache-2.0 + + +Copyright Authors of Cilium + Apache License Version 2.0, January 2004 @@ -17102,17 +16990,22 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcilium/workerpool v1.2.0 - Apache-2.0 - - -Copyright Authors of Cilium - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcilium/proxy v0.0.0-20231031145409-f19708f3d018 - Apache-2.0 + + +Copyright 2018 +Copyright 2020 +Copyright 2017-2021 +Copyright Authors of Cilium +Copyright 2019 The Bazel Authors +Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com + Apache License Version 2.0, January 2004 @@ -17209,16 +17102,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcncf%2Fudpa/go v0.0.0-20220112060539-c52dc94e7fbe - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcilium/workerpool v1.2.0 - Apache-2.0 + + +Copyright Authors of Cilium + Apache License Version 2.0, January 2004 @@ -17315,16 +17209,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcncf%2Fxds/go v0.0.0-20231128003011-0fa0005c9caa - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcncf%2Fudpa/go v0.0.0-20220112060539-c52dc94e7fbe - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -17421,16 +17315,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd%2Fbtrfs/v2 v2.0.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcncf%2Fxds/go v0.0.0-20231128003011-0fa0005c9caa - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -17527,16 +17421,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd%2Fcgroups/v3 v3.0.2 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd%2Fbtrfs/v2 v2.0.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -17633,17 +17527,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd%2Fstargz-snapshotter/estargz v0.14.3 - Apache-2.0 - - -Copyright 2019 The Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd%2Fcgroups/v3 v3.0.2 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -17740,16 +17633,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd%2Ftypeurl/v2 v2.1.1 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd%2Fstargz-snapshotter/estargz v0.14.3 - Apache-2.0 + + +Copyright 2019 The Go Authors + Apache License Version 2.0, January 2004 @@ -17846,16 +17740,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/aufs v1.0.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd%2Ftypeurl/v2 v2.1.1 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -17952,16 +17846,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/cgroups v1.1.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/aufs v1.0.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -18058,16 +17952,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/console v1.0.3 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/cgroups v1.1.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -18164,29 +18058,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fcontainerd/containerd v1.7.13 - Apache-2.0 - - -Copyright 2018 CNI authors -Copyright 2021 ADA Logics Ltd -Copyright 2022 ADA Logics Ltd -Copyright 2012-2015 Docker, Inc. -Copyright 2012-2017 Docker, Inc. -Copyright (c) 2009 The Go Authors -Copyright (c) Docker/Moby authors -Copyright (c) 2013, The GoGo Authors -Copyright 2015 The Kubernetes Authors -Copyright 2016 The Kubernetes Authors -Copyright 2017 The Kubernetes Authors -Copyright 2018 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/console v1.0.3 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -18283,16 +18164,29 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/continuity v0.4.2 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fcontainerd/containerd v1.7.13 - Apache-2.0 + + +Copyright 2018 CNI authors +Copyright 2021 ADA Logics Ltd +Copyright 2022 ADA Logics Ltd +Copyright 2012-2015 Docker, Inc. +Copyright 2012-2017 Docker, Inc. +Copyright (c) 2009 The Go Authors +Copyright (c) Docker/Moby authors +Copyright (c) 2013, The GoGo Authors +Copyright 2015 The Kubernetes Authors +Copyright 2016 The Kubernetes Authors +Copyright 2017 The Kubernetes Authors +Copyright 2018 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -18389,16 +18283,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/errdefs v0.1.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/continuity v0.4.2 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -18495,16 +18389,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/fifo v1.1.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/errdefs v0.1.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -18601,16 +18495,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/go-cni v1.1.9 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/fifo v1.1.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -18707,16 +18601,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/go-runc v1.0.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/go-cni v1.1.9 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -18813,16 +18707,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fcontainerd/imgcrypt v1.1.7 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/go-runc v1.0.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -18919,16 +18813,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/log v0.1.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fcontainerd/imgcrypt v1.1.7 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -19025,16 +18919,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/protobuild v0.3.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/log v0.1.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -19131,16 +19025,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/typeurl v1.0.2 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/protobuild v0.3.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -19237,16 +19131,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fcontainerd/zfs v1.1.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/typeurl v1.0.2 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -19343,23 +19237,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainernetworking/cni v1.1.2 - Apache-2.0 - - -Copyright 2015 CNI authors -Copyright 2016 CNI authors -Copyright 2017 CNI authors -Copyright 2018 CNI authors -Copyright 2019 CNI authors -Copyright 2014-2016 CNI authors -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fcontainerd/zfs v1.1.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -19456,18 +19343,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainers/libtrust v0.0.0-20230121012942-c1716e8a8d01 - Apache-2.0 - - -Copyright 2014 Docker, Inc. -copyright 2014 Docker, inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainernetworking/cni v1.1.2 - Apache-2.0 + + +Copyright 2015 CNI authors +Copyright 2016 CNI authors +Copyright 2017 CNI authors +Copyright 2018 CNI authors +Copyright 2019 CNI authors +Copyright 2014-2016 CNI authors +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -19564,16 +19456,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainers/ocicrypt v1.1.9 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainers/libtrust v0.0.0-20230121012942-c1716e8a8d01 - Apache-2.0 + + +Copyright 2014 Docker, Inc. +copyright 2014 Docker, inc. + Apache License Version 2.0, January 2004 @@ -19670,27 +19564,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainers/storage v1.51.0 - Apache-2.0 - - -(c) WithFileRange, (c) -Copyright (c) 2019 SUSE LLC -Copyright 2012-2016 Docker, Inc. -Copyright 2012-2017 Docker, Inc. -Copyright 2013-2016 Docker, Inc. -Copyright 2013-2018 Docker, Inc. -Copyright 2011 The Perkeep Authors -Copyright 2014-2016 The Docker & Go Authors -Copyright (c) 2014-2016 The Docker & Go Authors -Copyright (c) 2019 Aleksa Sarai -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainers/ocicrypt v1.1.9 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -19787,28 +19670,27 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcoreos%2Fgo-systemd/v22 v22.5.0 - Apache-2.0 - - -Copyright 2015 CoreOS Inc. -Copyright 2014 Docker, Inc. -Copyright 2015 CoreOS, Inc. -Copyright 2015 RedHat, Inc. -Copyright 2016 CoreOS, Inc. -Copyright 2018 CoreOS, Inc. -Copyright 2019 CoreOS, Inc. -Copyright 2020 CoreOS, Inc. -Copyright 2022 CoreOS, Inc. -Copyright 2015-2018 CoreOS, Inc. -Copyright 2015, 2018 CoreOS, Inc. -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainers/storage v1.51.0 - Apache-2.0 + + +(c) WithFileRange, (c) +Copyright (c) 2019 SUSE LLC +Copyright 2012-2016 Docker, Inc. +Copyright 2012-2017 Docker, Inc. +Copyright 2013-2016 Docker, Inc. +Copyright 2013-2018 Docker, Inc. +Copyright 2011 The Perkeep Authors +Copyright 2014-2016 The Docker & Go Authors +Copyright (c) 2014-2016 The Docker & Go Authors +Copyright (c) 2019 Aleksa Sarai +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -19905,18 +19787,28 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcoreos/go-oidc v2.2.1+incompatible - Apache-2.0 - - -Copyright 2014 CoreOS, Inc -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcoreos%2Fgo-systemd/v22 v22.5.0 - Apache-2.0 + + +Copyright 2015 CoreOS Inc. +Copyright 2014 Docker, Inc. +Copyright 2015 CoreOS, Inc. +Copyright 2015 RedHat, Inc. +Copyright 2016 CoreOS, Inc. +Copyright 2018 CoreOS, Inc. +Copyright 2019 CoreOS, Inc. +Copyright 2020 CoreOS, Inc. +Copyright 2022 CoreOS, Inc. +Copyright 2015-2018 CoreOS, Inc. +Copyright 2015, 2018 CoreOS, Inc. +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -20013,19 +19905,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcoreos/go-semver v0.3.1 - Apache-2.0 - - -Copyright 2018 CoreOS, Inc -Copyright 2013-2015 CoreOS, Inc. -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcoreos/go-oidc v2.2.1+incompatible - Apache-2.0 + + +Copyright 2014 CoreOS, Inc +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -20122,17 +20013,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdimchansky/utfbom v1.1.1 - Apache-2.0 - - -Copyright (c) 2018-2020, Dmitrij Koniajev (dimchansky@gmail.com) - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcoreos/go-semver v0.3.1 - Apache-2.0 + + +Copyright 2018 CoreOS, Inc +Copyright 2013-2015 CoreOS, Inc. +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -20229,18 +20122,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdistribution%2Fdistribution/v3 v3.0.0-20221208165359-362910506bc2 - Apache-2.0 - - -Copyright (c) 2013 Damien Le Berrigaud and Nick Wade -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdimchansky/utfbom v1.1.1 - Apache-2.0 + + +Copyright (c) 2018-2020, Dmitrij Koniajev (dimchansky@gmail.com) + Apache License Version 2.0, January 2004 @@ -20337,17 +20229,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdistribution/reference v0.5.0 - Apache-2.0 - - -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdistribution%2Fdistribution/v3 v3.0.0-20221208165359-362910506bc2 - Apache-2.0 + + +Copyright (c) 2013 Damien Le Berrigaud and Nick Wade +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -20444,24 +20337,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdocker/cli v25.0.3+incompatible - Apache-2.0 - - -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -(c) ProgressPrinter ReadCloser -Copyright (c) 2013, Felix Riedel -Copyright 2012-2017 Docker, Inc. -Copyright 2013-2017 Docker, Inc. -Copyright (c) 2015-$ date + Y Docker -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdistribution/reference v0.5.0 - Apache-2.0 + + +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -20558,17 +20444,24 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdocker/distribution v2.8.3+incompatible - Apache-2.0 - - -Copyright (c) 2013 Damien Le Berrigaud and Nick Wade - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdocker/cli v25.0.3+incompatible - Apache-2.0 + + +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +(c) ProgressPrinter ReadCloser +Copyright (c) 2013, Felix Riedel +Copyright 2012-2017 Docker, Inc. +Copyright 2013-2017 Docker, Inc. +Copyright (c) 2015-$ date + Y Docker +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -20665,28 +20558,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fdocker/docker v25.0.5+incompatible - Apache-2.0 - - -(c) WithFileRange, (c) -copyright 2015 Docker, inc. -ExistingContainerIDs (c) Test -Copyright (c) 2015 John Howard -Copyright 2012-2017 Docker, Inc. -Copyright 2013-2018 Docker, Inc. -Copyright (c) 2009 The Go Authors -Copyright (c) 2015-$ date + Y Docker -Copyright 1999-2013 Gentoo Foundation -Copyright (c) 2015-'+$currentYear+ Docker -Copyright (c) 2012-2018 Mat Ryer and Tyler Bunnell -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdocker/distribution v2.8.3+incompatible - Apache-2.0 + + +Copyright (c) 2013 Damien Le Berrigaud and Nick Wade + Apache License Version 2.0, January 2004 @@ -20783,18 +20665,28 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fdocker/go-connections v0.5.0 - Apache-2.0 - - -Copyright 2015 Docker, Inc. -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fdocker/docker v25.0.5+incompatible - Apache-2.0 + + +(c) WithFileRange, (c) +copyright 2015 Docker, inc. +ExistingContainerIDs (c) Test +Copyright (c) 2015 John Howard +Copyright 2012-2017 Docker, Inc. +Copyright 2013-2018 Docker, Inc. +Copyright (c) 2009 The Go Authors +Copyright (c) 2015-$ date + Y Docker +Copyright 1999-2013 Gentoo Foundation +Copyright (c) 2015-'+$currentYear+ Docker +Copyright (c) 2012-2018 Mat Ryer and Tyler Bunnell +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -20891,19 +20783,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdocker/go-events v0.0.0-20190806004212-e31b211e4f1c - Apache-2.0 - - -Copyright 2016 Docker, Inc. -Copyright (c) 2016 Docker, Inc. -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fdocker/go-connections v0.5.0 - Apache-2.0 + + +Copyright 2015 Docker, Inc. +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -21000,19 +20891,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdocker/go-units v0.5.0 - Apache-2.0 - - -Copyright 2015 Docker, Inc. -Copyright (c) 2015 Docker, Inc. -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdocker/go-events v0.0.0-20190806004212-e31b211e4f1c - Apache-2.0 + + +Copyright 2016 Docker, Inc. +Copyright (c) 2016 Docker, Inc. +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -21109,19 +21000,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdocker/libnetwork v0.8.0-dev.2.0.20210525090646-64b7a4574d14 - Apache-2.0 - - -copyright 2015 Docker, inc. -Copyright 2014-2016 The Docker & Go Authors -Copyright (c) 2014-2016 The Docker & Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdocker/go-units v0.5.0 - Apache-2.0 + + +Copyright 2015 Docker, Inc. +Copyright (c) 2015 Docker, Inc. +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -21218,18 +21109,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdocker/libtrust v0.0.0-20150114040149-fa567046d9b1 - Apache-2.0 - - -Copyright 2014 Docker, Inc. -copyright 2014 Docker, inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdocker/libnetwork v0.8.0-dev.2.0.20210525090646-64b7a4574d14 - Apache-2.0 + + +copyright 2015 Docker, inc. +Copyright 2014-2016 The Docker & Go Authors +Copyright (c) 2014-2016 The Docker & Go Authors + Apache License Version 2.0, January 2004 @@ -21326,23 +21218,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdvyukov/go-fuzz v0.0.0-20210103155950-6a8e9d1f2415 - Apache-2.0 - - -Copyright 2011-2015 Twitter, Inc. -Copyright 2014-2015 Twitter, Inc. -(c) 2005, 2015 jQuery Foundation, Inc. -Copyright 2015 go-fuzz project authors -Copyright 2016 go-fuzz project authors -Copyright 2018 go-fuzz project authors -Copyright 2019 go-fuzz project authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdocker/libtrust v0.0.0-20150114040149-fa567046d9b1 - Apache-2.0 + + +Copyright 2014 Docker, Inc. +copyright 2014 Docker, inc. + Apache License Version 2.0, January 2004 @@ -21439,21 +21326,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fenvoyproxy/go-control-plane v0.12.0 - Apache-2.0 - - -Copyright 2018 Envoyproxy -Copyright 2019 Envoyproxy -Copyright 2020 Envoyproxy -Copyright 2022 Envoyproxy -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdvyukov/go-fuzz v0.0.0-20210103155950-6a8e9d1f2415 - Apache-2.0 + + +Copyright 2011-2015 Twitter, Inc. +Copyright 2014-2015 Twitter, Inc. +(c) 2005, 2015 jQuery Foundation, Inc. +Copyright 2015 go-fuzz project authors +Copyright 2016 go-fuzz project authors +Copyright 2018 go-fuzz project authors +Copyright 2019 go-fuzz project authors + Apache License Version 2.0, January 2004 @@ -21550,16 +21439,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fenvoyproxy/protoc-gen-validate v1.0.4 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fenvoyproxy/go-control-plane v0.12.0 - Apache-2.0 + + +Copyright 2018 Envoyproxy +Copyright 2019 Envoyproxy +Copyright 2020 Envoyproxy +Copyright 2022 Envoyproxy +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -21656,16 +21550,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgiantswarm/microerror v0.4.1 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fenvoyproxy/protoc-gen-validate v1.0.4 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -21762,24 +21656,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgo-jose%2fgo-jose/v3 v3.0.1 - Apache-2.0 - - -Copyright 2014 Square Inc. -Copyright 2017 Square Inc. -Copyright 2018 Square Inc. -Copyright 2016 Square, Inc. -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright (c) 2012 The Go Authors -Copyright 2016 Zbigniew Mandziejewicz - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgiantswarm/microerror v0.4.1 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -21876,17 +21762,24 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgolang/glog v1.2.0 - Apache-2.0 - - -Copyright 2023 Google Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgo-jose%2fgo-jose/v3 v3.0.1 - Apache-2.0 + + +Copyright 2014 Square Inc. +Copyright 2017 Square Inc. +Copyright 2018 Square Inc. +Copyright 2016 Square, Inc. +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright (c) 2012 The Go Authors +Copyright 2016 Zbigniew Mandziejewicz + Apache License Version 2.0, January 2004 @@ -21983,18 +21876,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgolang/groupcache v0.0.0-20210331224755-41bb18bfe9da - Apache-2.0 - - -Copyright 2012 Google Inc. -Copyright 2013 Google Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgolang/glog v1.2.0 - Apache-2.0 + + +Copyright 2023 Google Inc. + Apache License Version 2.0, January 2004 @@ -22091,23 +21983,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgolang/mock v1.6.0 - Apache-2.0 - - -Copyright 2019 Google LLC -Copyright 2020 Google LLC -Copyright 2010 Google Inc. -Copyright 2010 Google LLC. -Copyright 2011 Google Inc. -Copyright 2012 Google Inc. -Copyright 2020 Google Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgolang/groupcache v0.0.0-20210331224755-41bb18bfe9da - Apache-2.0 + + +Copyright 2012 Google Inc. +Copyright 2013 Google Inc. + Apache License Version 2.0, January 2004 @@ -22204,17 +22091,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgolang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe - Apache-2.0 - - -Copyright 2016 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgolang/mock v1.6.0 - Apache-2.0 + + +Copyright 2019 Google LLC +Copyright 2020 Google LLC +Copyright 2010 Google Inc. +Copyright 2010 Google LLC. +Copyright 2011 Google Inc. +Copyright 2012 Google Inc. +Copyright 2020 Google Inc. + Apache License Version 2.0, January 2004 @@ -22311,22 +22204,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-logr/logr v1.4.1 - Apache-2.0 - - -Copyright 2019 The logr -Copyright 2020 The logr -Copyright 2021 The logr -Copyright 2022 The logr -Copyright 2023 The logr -Copyright 2020 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgolang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe - Apache-2.0 + + +Copyright 2016 Google LLC + Apache License Version 2.0, January 2004 @@ -22423,19 +22311,22 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-logr/stdr v1.2.2 - Apache-2.0 - - -Copyright 2019 The logr -Copyright 2021 The logr -Copyright 2020 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-logr/logr v1.4.1 - Apache-2.0 + + +Copyright 2019 The logr +Copyright 2020 The logr +Copyright 2021 The logr +Copyright 2022 The logr +Copyright 2023 The logr +Copyright 2020 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -22532,20 +22423,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-logr/zapr v1.2.3 - Apache-2.0 - - -Copyright 2019 The logr -Copyright 2021 The logr -Copyright 2018 Solly Ross -Copyright 2020 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-logr/stdr v1.2.2 - Apache-2.0 + + +Copyright 2019 The logr +Copyright 2021 The logr +Copyright 2020 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -22642,22 +22532,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgomodule/redigo v1.8.2 - Apache-2.0 - - -Copyright 2011 Gary Burd -Copyright 2012 Gary Burd -Copyright 2013 Gary Burd -Copyright 2014 Gary Burd -Copyright 2017 Gary Burd -Copyright 2018 Gary Burd - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-logr/zapr v1.2.3 - Apache-2.0 + + +Copyright 2019 The logr +Copyright 2021 The logr +Copyright 2018 Solly Ross +Copyright 2020 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -22754,16 +22642,22 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle%2Frenameio/v2 v2.0.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgomodule/redigo v1.8.2 - Apache-2.0 + + +Copyright 2011 Gary Burd +Copyright 2012 Gary Burd +Copyright 2013 Gary Burd +Copyright 2014 Gary Burd +Copyright 2017 Gary Burd +Copyright 2018 Gary Burd + Apache License Version 2.0, January 2004 @@ -22860,19 +22754,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle/btree v1.1.2 - Apache-2.0 - - -(c) OnWriteContext T -Copyright 2014 Google Inc. -Copyright 2014-2022 Google Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle%2Frenameio/v2 v2.0.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -22969,25 +22860,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle/gnostic v0.5.7-v3refs - Apache-2.0 - - -Copyright 2008 Google Inc. -Copyright 2016 Google LLC. -Copyright 2017 Google LLC. -Copyright 2018 Google LLC. -Copyright 2019 Google LLC. -Copyright 2020 Google LLC. -Copyright 2021 Google LLC. -Copyright (c) 2015, Google Inc. -Copyright 2017-2020, Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle/btree v1.1.2 - Apache-2.0 + + +(c) OnWriteContext T +Copyright 2014 Google Inc. +Copyright 2014-2022 Google Inc. + Apache License Version 2.0, January 2004 @@ -23084,21 +22969,25 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle/gnostic-models v0.6.9-0.20230804172637-c7be7c783f49 - Apache-2.0 - - -Copyright 2017 Google LLC. -Copyright 2019 Google LLC. -Copyright 2020 Google LLC. -Copyright 2022 Google LLC. -Copyright 2017-2022, Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle/gnostic v0.5.7-v3refs - Apache-2.0 + + +Copyright 2008 Google Inc. +Copyright 2016 Google LLC. +Copyright 2017 Google LLC. +Copyright 2018 Google LLC. +Copyright 2019 Google LLC. +Copyright 2020 Google LLC. +Copyright 2021 Google LLC. +Copyright (c) 2015, Google Inc. +Copyright 2017-2020, Google LLC. + Apache License Version 2.0, January 2004 @@ -23195,24 +23084,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle/go-containerregistry v0.17.0 - Apache-2.0 - - -Copyright 2018 Google LLC -Copyright 2019 Google LLC -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2014 The Kubernetes Authors. -Copyright 2019 The original author or authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle/gnostic-models v0.6.9-0.20230804172637-c7be7c783f49 - Apache-2.0 + + +Copyright 2017 Google LLC. +Copyright 2019 Google LLC. +Copyright 2020 Google LLC. +Copyright 2022 Google LLC. +Copyright 2017-2022, Google LLC. + Apache License Version 2.0, January 2004 @@ -23309,17 +23195,24 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle/gofuzz v1.2.0 - Apache-2.0 - - -Copyright 2014 Google Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle/go-containerregistry v0.17.0 - Apache-2.0 + + +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2014 The Kubernetes Authors. +Copyright 2019 The original author or authors + Apache License Version 2.0, January 2004 @@ -23416,25 +23309,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle/pprof v0.0.0-20210720184732-4bb14d4b1be1 - Apache-2.0 - - -Copyright 2014 Google Inc. -Copyright 2016 Google Inc. -Copyright 2017 Google Inc. -Copyright 2018 Google Inc. -Copyright 2019 Google Inc. -Copyright (c) 2013 Justin Palmer -Copyright 2010-2017 Mike Bostock -Copyright (c) 2020 Free Software Foundation -Copyright 2009-2017 Andrea Leofreddi - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle/gofuzz v1.2.0 - Apache-2.0 + + +Copyright 2014 Google Inc. + Apache License Version 2.0, January 2004 @@ -23531,19 +23416,25 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgoogle/s2a-go v0.1.7 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle/pprof v0.0.0-20210720184732-4bb14d4b1be1 - Apache-2.0 + + +Copyright 2014 Google Inc. +Copyright 2016 Google Inc. +Copyright 2017 Google Inc. +Copyright 2018 Google Inc. +Copyright 2019 Google Inc. +Copyright (c) 2013 Justin Palmer +Copyright 2010-2017 Mike Bostock +Copyright (c) 2020 Free Software Foundation +Copyright 2009-2017 Andrea Leofreddi + Apache License Version 2.0, January 2004 @@ -23640,17 +23531,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle/shlex v0.0.0-20191202100458-e7afc7fbc510 - Apache-2.0 - - -Copyright 2012 Google Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgoogle/s2a-go v0.1.7 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -23747,18 +23640,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgoogleapis/enterprise-certificate-proxy v0.3.2 - Apache-2.0 - - -Copyright 2022 Google LLC. -Copyright 2023 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle/shlex v0.0.0-20191202100458-e7afc7fbc510 - Apache-2.0 + + +Copyright 2012 Google Inc. + Apache License Version 2.0, January 2004 @@ -23855,19 +23747,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogleapis/google-cloud-go-testing v0.0.0-20210719221736-1c9a4c676720 - Apache-2.0 - - -Copyright 2018 Google LLC -Copyright 2019 Google LLC -Copyright 2018 Google Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgoogleapis/enterprise-certificate-proxy v0.3.2 - Apache-2.0 + + +Copyright 2022 Google LLC. +Copyright 2023 Google LLC. + Apache License Version 2.0, January 2004 @@ -23964,18 +23855,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-openapi/analysis v0.21.4 - Apache-2.0 - - -Copyright 2015 go-swagger -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogleapis/google-cloud-go-testing v0.0.0-20210719221736-1c9a4c676720 - Apache-2.0 + + +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2018 Google Inc. + Apache License Version 2.0, January 2004 @@ -24072,18 +23964,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgo-openapi/errors v0.20.4 - Apache-2.0 - - -Copyright 2015 go-swagger -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-openapi/analysis v0.21.4 - Apache-2.0 + + +Copyright 2015 go-swagger +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -24180,18 +24072,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-openapi/jsonpointer v0.20.0 - Apache-2.0 - - -Copyright 2013 sigu-399 https://github.com/sigu-399 -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgo-openapi/errors v0.20.4 - Apache-2.0 + + +Copyright 2015 go-swagger +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -24288,18 +24180,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-openapi/jsonreference v0.20.2 - Apache-2.0 - - -Copyright 2013 sigu-399 https://github.com/sigu-399 -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-openapi/jsonpointer v0.20.0 - Apache-2.0 + + +Copyright 2013 sigu-399 https://github.com/sigu-399 +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -24396,18 +24288,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-openapi/loads v0.21.2 - Apache-2.0 - - -Copyright 2015 go-swagger -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-openapi/jsonreference v0.20.2 - Apache-2.0 + + +Copyright 2013 sigu-399 https://github.com/sigu-399 +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -24504,20 +24396,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgo-openapi/runtime v0.26.2 - Apache-2.0 - - -Copyright 2015 go-swagger -Copyright 2013 The Go Authors -Copyright (c) 2014 Naoya Inada -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-openapi/loads v0.21.2 - Apache-2.0 + + +Copyright 2015 go-swagger +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -24614,19 +24504,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-openapi/spec v0.20.11 - Apache-2.0 - - -Copyright 2015 go-swagger -Copyright 2017 go-swagger -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgo-openapi/runtime v0.26.2 - Apache-2.0 + + +Copyright 2015 go-swagger +Copyright 2013 The Go Authors +Copyright (c) 2014 Naoya Inada +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -24723,18 +24614,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-openapi/strfmt v0.21.9 - Apache-2.0 - - -Copyright 2015 go-swagger -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-openapi/spec v0.20.11 - Apache-2.0 + + +Copyright 2015 go-swagger +Copyright 2017 go-swagger +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -24831,18 +24723,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgo-openapi/swag v0.22.4 - Apache-2.0 - - -Copyright 2015 go-swagger -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-openapi/strfmt v0.21.9 - Apache-2.0 + + +Copyright 2015 go-swagger +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -24939,21 +24831,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-openapi/validate v0.22.3 - Apache-2.0 - - -Copyright 2015 go-swagger -Copyright 2017 go-swagger -Copyright 2018 go-swagger -Copyright (c) 2004, 2006 The Linux Foundation and its contributors -(c) 2016 Microsoft', termsOfService' https://www.microsoft.com/en-us/legal/intellectualproperty/copyright/default.aspx - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgo-openapi/swag v0.22.4 - Apache-2.0 + + +Copyright 2015 go-swagger +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -25050,20 +24939,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgrpc-ecosystem/go-grpc-middleware v1.3.0 - Apache-2.0 - - -Copyright 2017 David Ackroyd -Copyright 2016 Michal Witkowski -Copyright 2017 Michal Witkowski -Copyright (c) Improbable Worlds Ltd - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-openapi/validate v0.22.3 - Apache-2.0 + + +Copyright 2015 go-swagger +Copyright 2017 go-swagger +Copyright 2018 go-swagger +Copyright (c) 2004, 2006 The Linux Foundation and its contributors +(c) 2016 Microsoft', termsOfService' https://www.microsoft.com/en-us/legal/intellectualproperty/copyright/default.aspx + Apache License Version 2.0, January 2004 @@ -25160,17 +25050,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgrpc-ecosystem/go-grpc-prometheus v1.2.0 - Apache-2.0 - - -Copyright 2016 Michal Witkowski - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgrpc-ecosystem/go-grpc-middleware v1.3.0 - Apache-2.0 + + +Copyright 2017 David Ackroyd +Copyright 2016 Michal Witkowski +Copyright 2017 Michal Witkowski +Copyright (c) Improbable Worlds Ltd + Apache License Version 2.0, January 2004 @@ -25267,17 +25160,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Finconshreveable/mousetrap v1.1.0 - Apache-2.0 - - -Copyright 2022 Alan Shreve - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgrpc-ecosystem/go-grpc-prometheus v1.2.0 - Apache-2.0 + + +Copyright 2016 Michal Witkowski + Apache License Version 2.0, January 2004 @@ -25374,16 +25267,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fintel/goresctrl v0.3.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Finconshreveable/mousetrap v1.1.0 - Apache-2.0 + + +Copyright 2022 Alan Shreve + Apache License Version 2.0, January 2004 @@ -25480,17 +25374,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjmespath/go-jmespath v0.4.0 - Apache-2.0 - - -Copyright 2015 James Saryerwinnie - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fintel/goresctrl v0.3.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -25587,16 +25480,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjonboulle/clockwork v0.2.2 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjmespath/go-jmespath v0.4.0 - Apache-2.0 + + +Copyright 2015 James Saryerwinnie + Apache License Version 2.0, January 2004 @@ -25693,17 +25587,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkylelemons/godebug v1.1.0 - Apache-2.0 - - -Copyright 2013 Google Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjonboulle/clockwork v0.2.2 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -25800,18 +25693,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flinuxkit/virtsock v0.0.0-20201010232012-f8cee7dfc7a3 - Apache-2.0 - - -Copyright 2016-2017 The -Copyright (c) 2015 Microsoft - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkylelemons/godebug v1.1.0 - Apache-2.0 + + +Copyright 2013 Google Inc. + Apache License Version 2.0, January 2004 @@ -25908,17 +25800,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flyft%2Fprotoc-gen-star/v2 v2.0.3 - Apache-2.0 - - -Copyright (c) s - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flinuxkit/virtsock v0.0.0-20201010232012-f8cee7dfc7a3 - Apache-2.0 + + +Copyright 2016-2017 The +Copyright (c) 2015 Microsoft + Apache License Version 2.0, January 2004 @@ -26015,17 +25908,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmasterminds/goutils v1.1.1 - Apache-2.0 - - -Copyright 2014 Alexander Okoli - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flyft%2Fprotoc-gen-star/v2 v2.0.3 - Apache-2.0 + + +Copyright (c) s + Apache License Version 2.0, January 2004 @@ -26122,20 +26015,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmatttproud%2Fgolang_protobuf_extensions/v2 v2.0.0 - Apache-2.0 - - -Copyright 2013 Matt T. Proud -Copyright 2016 Matt T. Proud -Copyright 2022 Matt T. Proud -Copyright 2012 Matt T. Proud (matt.proud@gmail.com) - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmasterminds/goutils v1.1.1 - Apache-2.0 + + +Copyright 2014 Alexander Okoli + Apache License Version 2.0, January 2004 @@ -26232,20 +26122,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmatttproud/golang_protobuf_extensions v1.0.4 - Apache-2.0 - - -Copyright 2013 Matt T. Proud -Copyright 2016 Matt T. Proud -Copyright 2010 The Go Authors -Copyright 2012 Matt T. Proud (matt.proud@gmail.com) - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmatttproud%2Fgolang_protobuf_extensions/v2 v2.0.0 - Apache-2.0 + + +Copyright 2013 Matt T. Proud +Copyright 2016 Matt T. Proud +Copyright 2022 Matt T. Proud +Copyright 2012 Matt T. Proud (matt.proud@gmail.com) + Apache License Version 2.0, January 2004 @@ -26342,23 +26232,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fminio/sha256-simd v1.0.0 - Apache-2.0 - - -(c) 2016 Minio, Inc. -(c) 2017 Minio, Inc. -(c) 2019 Minio, Inc. -(c) 2021 Minio, Inc. -Kristofer Peterson, (c) 2018 -Copyright (c) 2009 The Go Authors -Copyright (c) 2017, Intel Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmatttproud/golang_protobuf_extensions v1.0.4 - Apache-2.0 + + +Copyright 2013 Matt T. Proud +Copyright 2016 Matt T. Proud +Copyright 2010 The Go Authors +Copyright 2012 Matt T. Proud (matt.proud@gmail.com) + Apache License Version 2.0, January 2004 @@ -26455,17 +26342,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmistifyio%2Fgo-zfs/v3 v3.0.1 - Apache-2.0 - - -Copyright (c) 2014, OmniTI Computer Consulting, Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fminio/sha256-simd v1.0.0 - Apache-2.0 + + +(c) 2016 Minio, Inc. +(c) 2017 Minio, Inc. +(c) 2019 Minio, Inc. +(c) 2021 Minio, Inc. +Kristofer Peterson, (c) 2018 +Copyright (c) 2009 The Go Authors +Copyright (c) 2017, Intel Corporation + Apache License Version 2.0, January 2004 @@ -26562,16 +26455,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmoby%2Fsys/mountinfo v0.7.1 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmistifyio%2Fgo-zfs/v3 v3.0.1 - Apache-2.0 + + +Copyright (c) 2014, OmniTI Computer Consulting, Inc. + Apache License Version 2.0, January 2004 @@ -26668,16 +26562,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmoby%2Fsys/sequential v0.5.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmoby%2Fsys/mountinfo v0.7.1 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -26774,16 +26668,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmoby%2Fsys/signal v0.7.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmoby%2Fsys/sequential v0.5.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -26880,16 +26774,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmoby%2Fsys/user v0.1.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmoby%2Fsys/signal v0.7.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -26986,17 +26880,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmoby/locker v1.0.1 - Apache-2.0 - - -Copyright 2013-2018 Docker, Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmoby%2Fsys/user v0.1.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -27093,20 +26986,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmoby/spdystream v0.2.0 - Apache-2.0 - - -Copyright 2011 The Go Authors -Copyright 2013 The Go Authors -Copyright 2014-2021 Docker Inc. -Copyright 2013-2021 Docker, inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmoby/locker v1.0.1 - Apache-2.0 + + +Copyright 2013-2018 Docker, Inc. + Apache License Version 2.0, January 2004 @@ -27203,18 +27093,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmoby/term v0.5.0 - Apache-2.0 - - -copyright 2015 Docker, inc. -Copyright 2013-2018 Docker, Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmoby/spdystream v0.2.0 - Apache-2.0 + + +Copyright 2011 The Go Authors +Copyright 2013 The Go Authors +Copyright 2014-2021 Docker Inc. +Copyright 2013-2021 Docker, inc. + Apache License Version 2.0, January 2004 @@ -27311,16 +27203,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmodern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmoby/term v0.5.0 - Apache-2.0 + + +copyright 2015 Docker, inc. +Copyright 2013-2018 Docker, Inc. + Apache License Version 2.0, January 2004 @@ -27417,16 +27311,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmodern-go/reflect2 v1.0.2 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmodern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -27523,17 +27417,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f - Apache-2.0 - - -Copyright 2016 Michal Witkowski - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmodern-go/reflect2 v1.0.2 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -27630,43 +27523,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fnats-io/nats.go v1.31.0 - Apache-2.0 - - -Copyright 2022 The NATS Authors -Copyright 2023 The NATS Authors -Copyright 2012-2018 The NATS Authors -Copyright 2012-2019 The NATS Authors -Copyright 2012-2020 The NATS Authors -Copyright 2012-2021 The NATS Authors -Copyright 2012-2022 The NATS Authors -Copyright 2012-2023 The NATS Authors -Copyright 2013-2018 The NATS Authors -Copyright 2013-2019 The NATS Authors -Copyright 2013-2020 The NATS Authors -Copyright 2013-2022 The NATS Authors -Copyright 2015-2019 The NATS Authors -Copyright 2015-2020 The NATS Authors -Copyright 2015-2021 The NATS Authors -Copyright 2016-2019 The NATS Authors -Copyright 2016-2022 The NATS Authors -Copyright 2017-2022 The NATS Authors -Copyright 2018-2020 The NATS Authors -Copyright 2018-2022 The NATS Authors -Copyright 2019-2023 The NATS Authors -Copyright 2020-2021 The NATS Authors -Copyright 2020-2022 The NATS Authors -Copyright 2020-2023 The NATS Authors -Copyright 2021-2022 The NATS Authors -Copyright 2021-2023 The NATS Authors -Copyright 2022-2023 The NATS Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f - Apache-2.0 + + +Copyright 2016 Michal Witkowski + Apache License Version 2.0, January 2004 @@ -27763,23 +27630,43 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fnats-io/nkeys v0.4.6 - Apache-2.0 - - -Copyright 2018 The NATS Authors -Copyright 2022 The NATS Authors -Copyright 2023 The NATS Authors -Copyright 2018-2019 The NATS Authors -Copyright 2018-2022 The NATS Authors -Copyright 2018-2023 The NATS Authors -Copyright 2022-2023 The NATS Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fnats-io/nats.go v1.31.0 - Apache-2.0 + + +Copyright 2022 The NATS Authors +Copyright 2023 The NATS Authors +Copyright 2012-2018 The NATS Authors +Copyright 2012-2019 The NATS Authors +Copyright 2012-2020 The NATS Authors +Copyright 2012-2021 The NATS Authors +Copyright 2012-2022 The NATS Authors +Copyright 2012-2023 The NATS Authors +Copyright 2013-2018 The NATS Authors +Copyright 2013-2019 The NATS Authors +Copyright 2013-2020 The NATS Authors +Copyright 2013-2022 The NATS Authors +Copyright 2015-2019 The NATS Authors +Copyright 2015-2020 The NATS Authors +Copyright 2015-2021 The NATS Authors +Copyright 2016-2019 The NATS Authors +Copyright 2016-2022 The NATS Authors +Copyright 2017-2022 The NATS Authors +Copyright 2018-2020 The NATS Authors +Copyright 2018-2022 The NATS Authors +Copyright 2019-2023 The NATS Authors +Copyright 2020-2021 The NATS Authors +Copyright 2020-2022 The NATS Authors +Copyright 2020-2023 The NATS Authors +Copyright 2021-2022 The NATS Authors +Copyright 2021-2023 The NATS Authors +Copyright 2022-2023 The NATS Authors + Apache License Version 2.0, January 2004 @@ -27876,18 +27763,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fnats-io/nuid v1.0.1 - Apache-2.0 - - -Copyright 2016-2018 The NATS Authors -Copyright 2016-2019 The NATS Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fnats-io/nkeys v0.4.6 - Apache-2.0 + + +Copyright 2018 The NATS Authors +Copyright 2022 The NATS Authors +Copyright 2023 The NATS Authors +Copyright 2018-2019 The NATS Authors +Copyright 2018-2022 The NATS Authors +Copyright 2018-2023 The NATS Authors +Copyright 2022-2023 The NATS Authors + Apache License Version 2.0, January 2004 @@ -27984,17 +27876,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fnytimes/gziphandler v1.1.1 - Apache-2.0 - - -Copyright 2016-2017 The New York Times Company - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fnats-io/nuid v1.0.1 - Apache-2.0 + + +Copyright 2016-2018 The NATS Authors +Copyright 2016-2019 The NATS Authors + Apache License Version 2.0, January 2004 @@ -28091,17 +27984,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Foklog/ulid v1.3.1 - Apache-2.0 - - -Copyright 2016 The Oklog Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fnytimes/gziphandler v1.1.1 - Apache-2.0 + + +Copyright 2016-2017 The New York Times Company + Apache License Version 2.0, January 2004 @@ -28198,22 +28091,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fopencontainers/image-spec v1.1.0 - Apache-2.0 - - -ChainID (c) DiffID (c) -Copyright 2016 The Linux Foundation -Copyright 2017 The Linux Foundation -Copyright 2018 The Linux Foundation -Copyright 2016-2022 The Linux Foundation -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Foklog/ulid v1.3.1 - Apache-2.0 + + +Copyright 2016 The Oklog Authors + Apache License Version 2.0, January 2004 @@ -28310,34 +28198,22 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fopencontainers/runc v1.1.12 - Apache-2.0 - - -Copyright 2016 SUSE LLC -Copyright (c) 2019 SUSE LLC -Copyright (c) 2020 SUSE LLC -Copyright 2014 Docker, Inc. -copyright 2014 Docker, inc. -Copyright (c) 2017 SUSE LLC. -Copyright (c) 2023 SUSE LLC. -Copyright 2016, 2017 SUSE LLC -Copyright (C) 2019 Aleksa Sarai -Copyright (C) 2020 Aleksa Sarai -Copyright 2012-2015 Docker, Inc. -Copyright (c) 2017-2023 SUSE LLC. -Copyright (c) 2023 Open Containers Authors -Copyright (c) 2017-2021 Open Containers Authors -Copyright (c) 2017-2023 Open Containers Authors -Copyright (c) 2019 Aleksa Sarai -Copyright (c) 2020 Aleksa Sarai -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fopencontainers/image-spec v1.1.0 - Apache-2.0 + + +ChainID (c) DiffID (c) +Copyright 2016 The Linux Foundation +Copyright 2017 The Linux Foundation +Copyright 2018 The Linux Foundation +Copyright 2016-2022 The Linux Foundation +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -28434,18 +28310,34 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fopencontainers/runtime-spec v1.2.0 - Apache-2.0 - - -Copyright 2015 The Linux Foundation -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fopencontainers/runc v1.1.12 - Apache-2.0 + + +Copyright 2016 SUSE LLC +Copyright (c) 2019 SUSE LLC +Copyright (c) 2020 SUSE LLC +Copyright 2014 Docker, Inc. +copyright 2014 Docker, inc. +Copyright (c) 2017 SUSE LLC. +Copyright (c) 2023 SUSE LLC. +Copyright 2016, 2017 SUSE LLC +Copyright (C) 2019 Aleksa Sarai +Copyright (C) 2020 Aleksa Sarai +Copyright 2012-2015 Docker, Inc. +Copyright (c) 2017-2023 SUSE LLC. +Copyright (c) 2023 Open Containers Authors +Copyright (c) 2017-2021 Open Containers Authors +Copyright (c) 2017-2023 Open Containers Authors +Copyright (c) 2019 Aleksa Sarai +Copyright (c) 2020 Aleksa Sarai +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -28542,20 +28434,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fopencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 - Apache-2.0 - - -Copyright 2013-2016 Docker, Inc. -Copyright 2015 The Linux Foundation -Copyright (c) 2014-2018 W. Trevor King -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fopencontainers/runtime-spec v1.2.0 - Apache-2.0 + + +Copyright 2015 The Linux Foundation +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -28652,17 +28542,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fopencontainers/selinux v1.11.0 - Apache-2.0 - - -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fopencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 - Apache-2.0 + + +Copyright 2013-2016 Docker, Inc. +Copyright 2015 The Linux Foundation +Copyright (c) 2014-2018 W. Trevor King +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -28759,68 +28652,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fopen-policy-agent/opa v0.42.2 - Apache-2.0 - - -WithCompiler (c) -(c) now.Format 2006 -Copyright 2017-2020 -Copyright 2021 icza -Copyright 2015 xeipuuv -Copyright (c) 2015 lestrrat -Copyright 2013 MongoDB, Inc. -copyright 2021 Jeremy Thomas -Copyright 2011 The Go Authors -Copyright (c) 2019 Bryan Braun -Copyright 2004 The RE2 Authors -Copyright 2006 The RE2 Authors -Copyright 2007 The RE2 Authors -Copyright 2008 The RE2 Authors -Copyright 2009 The RE2 Authors -Copyright 2016 The OPA Authors -Copyright 2016 The RE2 Authors -Copyright 2017 The OPA Authors -Copyright 2018 The OPA Authors -Copyright 2018 The RE2 Authors -Copyright 2019 The OPA Authors -Copyright 2020 The OPA Authors -Copyright 2021 The OPA Authors -Copyright 2022 The OPA Authors -Copyright (c) 2020 Jeremy Thomas -Copyright 2013-2015 CoreOS, Inc. -Copyright (c) 2012 Rodrigo Moraes -Copyright 2011-2019 Twitter, Inc. -(c) UNIX System Laboratories, Inc. -Copyright (c) 2016 Sergey Kamardin -Copyright 2012 The Gorilla Authors -Copyright (c) 2008-2016 Stefan Krah -Copyright 1999-2005 The RE2 Authors -Copyright 2001-2010 The RE2 Authors -Copyright 2003-2009 The RE2 Authors -Copyright 2006-2007 The RE2 Authors -Copyright (c) 2002 by Lucent Technologies -Copyright 2011-2019 The Bootstrap Authors -Copyright (c) 2015-present, Facebook, Inc. -Copyright (c) 1993 by Sun Microsystems, Inc. -Copyright (c) 2005-2019, Jouni Malinen -Copyright 2015 xeipuuv https://github.com/xeipuuv -copyright 2014 Waybury. https://useiconic.com/open -Copyright (c) 2016 Federico Zivolo and contributors -Copyright (c) 1996,1999 by Internet Software Consortium -Copyright (c) 2004 by Internet Systems Consortium, Inc. -Copyright 2017 johandorland https://github.com/johandorland -Copyright 2018 johandorland https://github.com/johandorland -Copyright (c) 1990, 1993 The Regents of the University of California -(c) Marco Paland (info@paland.com) 2014-2019, PALANDesign Hannover, Germany -Copyright (c) 1982, 1986, 1989, 1993 The Regents of the University of California -Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fopencontainers/selinux v1.11.0 - Apache-2.0 + + +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -28917,17 +28759,68 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fopentracing/opentracing-go v1.2.1-0.20220228012449-10b1cf09e00b - Apache-2.0 - - -Copyright 2016 The OpenTracing Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fopen-policy-agent/opa v0.42.2 - Apache-2.0 + + +WithCompiler (c) +(c) now.Format 2006 +Copyright 2017-2020 +Copyright 2021 icza +Copyright 2015 xeipuuv +Copyright (c) 2015 lestrrat +Copyright 2013 MongoDB, Inc. +copyright 2021 Jeremy Thomas +Copyright 2011 The Go Authors +Copyright (c) 2019 Bryan Braun +Copyright 2004 The RE2 Authors +Copyright 2006 The RE2 Authors +Copyright 2007 The RE2 Authors +Copyright 2008 The RE2 Authors +Copyright 2009 The RE2 Authors +Copyright 2016 The OPA Authors +Copyright 2016 The RE2 Authors +Copyright 2017 The OPA Authors +Copyright 2018 The OPA Authors +Copyright 2018 The RE2 Authors +Copyright 2019 The OPA Authors +Copyright 2020 The OPA Authors +Copyright 2021 The OPA Authors +Copyright 2022 The OPA Authors +Copyright (c) 2020 Jeremy Thomas +Copyright 2013-2015 CoreOS, Inc. +Copyright (c) 2012 Rodrigo Moraes +Copyright 2011-2019 Twitter, Inc. +(c) UNIX System Laboratories, Inc. +Copyright (c) 2016 Sergey Kamardin +Copyright 2012 The Gorilla Authors +Copyright (c) 2008-2016 Stefan Krah +Copyright 1999-2005 The RE2 Authors +Copyright 2001-2010 The RE2 Authors +Copyright 2003-2009 The RE2 Authors +Copyright 2006-2007 The RE2 Authors +Copyright (c) 2002 by Lucent Technologies +Copyright 2011-2019 The Bootstrap Authors +Copyright (c) 2015-present, Facebook, Inc. +Copyright (c) 1993 by Sun Microsystems, Inc. +Copyright (c) 2005-2019, Jouni Malinen +Copyright 2015 xeipuuv https://github.com/xeipuuv +copyright 2014 Waybury. https://useiconic.com/open +Copyright (c) 2016 Federico Zivolo and contributors +Copyright (c) 1996,1999 by Internet Software Consortium +Copyright (c) 2004 by Internet Systems Consortium, Inc. +Copyright 2017 johandorland https://github.com/johandorland +Copyright 2018 johandorland https://github.com/johandorland +Copyright (c) 1990, 1993 The Regents of the University of California +(c) Marco Paland (info@paland.com) 2014-2019, PALANDesign Hannover, Germany +Copyright (c) 1982, 1986, 1989, 1993 The Regents of the University of California +Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) + Apache License Version 2.0, January 2004 @@ -29024,20 +28917,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fpetermattis/goid v0.0.0-20180202154549-b0b1615b78e5 - Apache-2.0 - - -Copyright 2015 Peter Mattis -Copyright 2016 Peter Mattis -Copyright 2018 Peter Mattis -Copyright 2014 The Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fopentracing/opentracing-go v1.2.1-0.20220228012449-10b1cf09e00b - Apache-2.0 + + +Copyright 2016 The OpenTracing Authors + Apache License Version 2.0, January 2004 @@ -29134,18 +29024,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fpquerna/cachecontrol v0.1.0 - Apache-2.0 - - -Copyright 2015 Paul Querna -Copyright 2009 The Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fpetermattis/goid v0.0.0-20180202154549-b0b1615b78e5 - Apache-2.0 + + +Copyright 2015 Peter Mattis +Copyright 2016 Peter Mattis +Copyright 2018 Peter Mattis +Copyright 2014 The Go Authors + Apache License Version 2.0, January 2004 @@ -29242,32 +29134,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fprometheus/client_golang v1.19.0 - Apache-2.0 - - -Copyright 2013 Matt T. Proud -Copyright 2010 The Go Authors -Copyright (c) 2015 Bjorn Rabenstein -Copyright 2014 The Prometheus Authors -Copyright 2015 The Prometheus Authors -Copyright 2016 The Prometheus Authors -Copyright 2017 The Prometheus Authors -Copyright 2018 The Prometheus Authors -Copyright 2019 The Prometheus Authors -Copyright 2020 The Prometheus Authors -Copyright 2021 The Prometheus Authors -Copyright 2022 The Prometheus Authors -Copyright 2023 The Prometheus Authors -Copyright (c) 2013, The Prometheus Authors -Copyright 2012-2015 The Prometheus Authors -Copyright 2013-2015 Blake Mizerany, Bjorn Rabenstein - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fpquerna/cachecontrol v0.1.0 - Apache-2.0 + + +Copyright 2015 Paul Querna +Copyright 2009 The Go Authors + Apache License Version 2.0, January 2004 @@ -29364,18 +29242,32 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fprometheus/client_model v0.6.0 - Apache-2.0 - - -Copyright 2013 Prometheus Team -Copyright 2012-2015 The Prometheus Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fprometheus/client_golang v1.19.0 - Apache-2.0 + + +Copyright 2013 Matt T. Proud +Copyright 2010 The Go Authors +Copyright (c) 2015 Bjorn Rabenstein +Copyright 2014 The Prometheus Authors +Copyright 2015 The Prometheus Authors +Copyright 2016 The Prometheus Authors +Copyright 2017 The Prometheus Authors +Copyright 2018 The Prometheus Authors +Copyright 2019 The Prometheus Authors +Copyright 2020 The Prometheus Authors +Copyright 2021 The Prometheus Authors +Copyright 2022 The Prometheus Authors +Copyright 2023 The Prometheus Authors +Copyright (c) 2013, The Prometheus Authors +Copyright 2012-2015 The Prometheus Authors +Copyright 2013-2015 Blake Mizerany, Bjorn Rabenstein + Apache License Version 2.0, January 2004 @@ -29472,28 +29364,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fprometheus/procfs v0.12.0 - Apache-2.0 - - -Copyright 2017 Roger Luethi -Copyright 2014 Prometheus Team -Copyright 2017 Prometheus Team -(c) HGST, a Western Digital Company -Copyright 2017 The Prometheus Authors -Copyright 2018 The Prometheus Authors -Copyright 2019 The Prometheus Authors -Copyright 2020 The Prometheus Authors -Copyright 2021 The Prometheus Authors -Copyright 2022 The Prometheus Authors -Copyright 2023 The Prometheus Authors -Copyright 2014-2015 The Prometheus Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fprometheus/client_model v0.6.0 - Apache-2.0 + + +Copyright 2013 Prometheus Team +Copyright 2012-2015 The Prometheus Authors + Apache License Version 2.0, January 2004 @@ -29590,16 +29472,28 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Frootless-containers/rootlesskit v1.1.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fprometheus/procfs v0.12.0 - Apache-2.0 + + +Copyright 2017 Roger Luethi +Copyright 2014 Prometheus Team +Copyright 2017 Prometheus Team +(c) HGST, a Western Digital Company +Copyright 2017 The Prometheus Authors +Copyright 2018 The Prometheus Authors +Copyright 2019 The Prometheus Authors +Copyright 2020 The Prometheus Authors +Copyright 2021 The Prometheus Authors +Copyright 2022 The Prometheus Authors +Copyright 2023 The Prometheus Authors +Copyright 2014-2015 The Prometheus Authors + Apache License Version 2.0, January 2004 @@ -29696,16 +29590,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fsafchain/ethtool v0.3.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Frootless-containers/rootlesskit v1.1.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -29802,16 +29696,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fsasha-s/go-deadlock v0.3.1 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fsafchain/ethtool v0.3.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -29908,17 +29802,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fsoheilhy/cmux v0.1.5 - Apache-2.0 - - -Copyright 2016 The CMux Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fsasha-s/go-deadlock v0.3.1 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -30015,29 +29908,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fspf13/afero v1.11.0 - Apache-2.0 - - -(c) 2015 The Go Authors -Copyright 2013 tsuru authors -Copyright 2009 The Go Authors -Copyright (c) 2015 The Go Authors -Portions Copyright (c) 2015 The Hugo Authors -Copyright (c) 2014 Steve Francia -Copyright (c) 2015 Steve Francia -Copyright (c) 2016 Steve Francia -Copyright (c) 2018 Steve Francia -Copyright (c) 2022 Steve Francia -Copyright (c) 2021 Vasily Ovchinnikov -Copyright (c) 2015 Jerry Jacobs -Portions Copyright 2016-present Bjorn Erik Pedersen - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fsoheilhy/cmux v0.1.5 - Apache-2.0 + + +Copyright 2016 The CMux Authors + Apache License Version 2.0, January 2004 @@ -30134,17 +30015,29 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fspf13/cobra v1.8.0 - Apache-2.0 - - -Copyright 2013-2023 The Cobra Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fspf13/afero v1.11.0 - Apache-2.0 + + +(c) 2015 The Go Authors +Copyright 2013 tsuru authors +Copyright 2009 The Go Authors +Copyright (c) 2015 The Go Authors +Portions Copyright (c) 2015 The Hugo Authors +Copyright (c) 2014 Steve Francia +Copyright (c) 2015 Steve Francia +Copyright (c) 2016 Steve Francia +Copyright (c) 2018 Steve Francia +Copyright (c) 2022 Steve Francia +Copyright (c) 2021 Vasily Ovchinnikov +Copyright (c) 2015 Jerry Jacobs +Portions Copyright 2016-present Bjorn Erik Pedersen + Apache License Version 2.0, January 2004 @@ -30241,16 +30134,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fspiffe%2Fgo-spiffe/v2 v2.1.6 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fspf13/cobra v1.8.0 - Apache-2.0 + + +Copyright 2013-2023 The Cobra Authors + Apache License Version 2.0, January 2004 @@ -30347,16 +30241,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fspiffe/spire-api-sdk v1.8.5 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fspiffe%2Fgo-spiffe/v2 v2.1.6 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -30453,18 +30347,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fstefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 - Apache-2.0 - - -Copyright IBM Corporation, 2020 -(c) Copyright IBM Corporation, 2020 - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fspiffe/spire-api-sdk v1.8.5 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -30561,21 +30453,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Ftklauser/numcpus v0.7.0 - Apache-2.0 - - -Copyright 2018 Tobias Klauser -Copyright 2021 Tobias Klauser -Copyright 2022 Tobias Klauser -Copyright 2018-2022 Tobias Klauser -Copyright 2019-2020 Tobias Klauser - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fstefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 - Apache-2.0 + + +Copyright IBM Corporation, 2020 +(c) Copyright IBM Corporation, 2020 + Apache License Version 2.0, January 2004 @@ -30672,18 +30561,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fvishvananda/netlink v1.2.1-beta.2.0.20231127184239-0ced8385386a - Apache-2.0 - - -Copyright 2014 Docker, Inc. -Copyright 2014 Vishvananda Ishaya - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Ftklauser/numcpus v0.7.0 - Apache-2.0 + + +Copyright 2018 Tobias Klauser +Copyright 2021 Tobias Klauser +Copyright 2022 Tobias Klauser +Copyright 2018-2022 Tobias Klauser +Copyright 2019-2020 Tobias Klauser + Apache License Version 2.0, January 2004 @@ -30780,18 +30672,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fvishvananda/netns v0.0.4 - Apache-2.0 - - -Copyright 2014 Docker, Inc. -Copyright 2014 Vishvananda Ishaya - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fvishvananda/netlink v1.2.1-beta.2.0.20231127184239-0ced8385386a - Apache-2.0 + + +Copyright 2014 Docker, Inc. +Copyright 2014 Vishvananda Ishaya + Apache License Version 2.0, January 2004 @@ -30888,17 +30780,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fxdg-go/pbkdf2 v1.0.0 - Apache-2.0 - - -Copyright 2021 by David A. Golden - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fvishvananda/netns v0.0.4 - Apache-2.0 + + +Copyright 2014 Docker, Inc. +Copyright 2014 Vishvananda Ishaya + Apache License Version 2.0, January 2004 @@ -30995,17 +30888,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fxdg-go/scram v1.1.2 - Apache-2.0 - - -Copyright 2018 by David A. Golden - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fxdg-go/pbkdf2 v1.0.0 - Apache-2.0 + + +Copyright 2021 by David A. Golden + Apache License Version 2.0, January 2004 @@ -31102,17 +30995,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fxdg-go/stringprep v1.0.4 - Apache-2.0 - - -Copyright 2018 by David A. Golden - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fxdg-go/scram v1.1.2 - Apache-2.0 + + +Copyright 2018 by David A. Golden + Apache License Version 2.0, January 2004 @@ -31209,18 +31102,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fxeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb - Apache-2.0 - - -Copyright 2015 xeipuuv -Copyright 2015 xeipuuv https://github.com/xeipuuv - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fxdg-go/stringprep v1.0.4 - Apache-2.0 + + +Copyright 2018 by David A. Golden + Apache License Version 2.0, January 2004 @@ -31317,129 +31209,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fxeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 - Apache-2.0 - - -Copyright 2015 xeipuuv -Copyright 2015 xeipuuv https://github.com/xeipuuv - -Apache License - -Version 2.0, January 2004 - -http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - - - "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - - - - "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - - - - "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - - - - "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. - - - - "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - - - - "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - - - - "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - - - - "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - - - - "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." - - - - "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: - - (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. - - You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - -To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); - -you may not use this file except in compliance with the License. - -You may obtain a copy of the License at +limitations under the License. -http://www.apache.org/licenses/LICENSE-2.0 +--------------------------------------------------------- -Unless required by applicable law or agreed to in writing, software +--------------------------------------------------------- -distributed under the License is distributed on an "AS IS" BASIS, +github.com%2Fxeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb - Apache-2.0 -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and +Copyright 2015 xeipuuv +Copyright 2015 xeipuuv https://github.com/xeipuuv -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fxeipuuv/gojsonschema v1.2.0 - Apache-2.0 - - -Copyright 2015 xeipuuv -Copyright 2013 MongoDB, Inc. -Copyright 2015 xeipuuv https://github.com/xeipuuv -Copyright 2017 johandorland https://github.com/johandorland -Copyright 2018 johandorland https://github.com/johandorland - Apache License Version 2.0, January 2004 @@ -31536,16 +31317,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fyashtewari/glob-intersection v0.1.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fxeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 - Apache-2.0 + + +Copyright 2015 xeipuuv +Copyright 2015 xeipuuv https://github.com/xeipuuv + Apache License Version 2.0, January 2004 @@ -31642,20 +31425,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.etcd.io%2fetcd%2fapi/v3 v3.5.11 - Apache-2.0 - - -Copyright 2015 The etcd -Copyright 2016 The etcd -Copyright 2018 The etcd -Copyright 2020 The etcd - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fxeipuuv/gojsonschema v1.2.0 - Apache-2.0 + + +Copyright 2015 xeipuuv +Copyright 2013 MongoDB, Inc. +Copyright 2015 xeipuuv https://github.com/xeipuuv +Copyright 2017 johandorland https://github.com/johandorland +Copyright 2018 johandorland https://github.com/johandorland + Apache License Version 2.0, January 2004 @@ -31752,27 +31536,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.etcd.io%2fetcd%2fclient%2fpkg/v3 v3.5.11 - Apache-2.0 - - -Copyright 2013 The etcd -Copyright 2015 The etcd -Copyright 2016 The etcd -Copyright 2017 The etcd -Copyright 2018 The etcd -Copyright 2019 The etcd -Copyright 2021 The etcd -Copyright 2022 The etcd -Copyright 2023 The etcd -Copyright 2009 The Go Authors -Copyright 2013 The Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fyashtewari/glob-intersection v0.1.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -31869,21 +31642,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.etcd.io%2Fetcd%2Fclient/v2 v2.305.10 - Apache-2.0 - - -Copyright 2015 The etcd -Copyright 2016 The etcd -Copyright 2017 The etcd -Copyright 2019 The etcd -Copyright 2015 The Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.etcd.io%2fetcd%2fapi/v3 v3.5.11 - Apache-2.0 + + +Copyright 2015 The etcd +Copyright 2016 The etcd +Copyright 2018 The etcd +Copyright 2020 The etcd + Apache License Version 2.0, January 2004 @@ -31980,23 +31752,27 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.etcd.io%2fetcd%2fclient/v3 v3.5.11 - Apache-2.0 - - -Copyright 2015 The etcd -Copyright 2016 The etcd -Copyright 2017 The etcd -Copyright 2018 The etcd -Copyright 2019 The etcd -Copyright 2020 The etcd -Copyright 2021 The etcd - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.etcd.io%2fetcd%2fclient%2fpkg/v3 v3.5.11 - Apache-2.0 + + +Copyright 2013 The etcd +Copyright 2015 The etcd +Copyright 2016 The etcd +Copyright 2017 The etcd +Copyright 2018 The etcd +Copyright 2019 The etcd +Copyright 2021 The etcd +Copyright 2022 The etcd +Copyright 2023 The etcd +Copyright 2009 The Go Authors +Copyright 2013 The Go Authors + Apache License Version 2.0, January 2004 @@ -32093,26 +31869,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.etcd.io%2Fetcd%2Fpkg/v3 v3.5.10 - Apache-2.0 - - -Copyright 2014 The etcd -Copyright 2015 The etcd -Copyright 2016 The etcd -Copyright 2017 The etcd -Copyright 2018 The etcd -Copyright 2019 The etcd -Copyright 2021 The etcd -Copyright 2022 The etcd -Copyright 2009 The Go Authors -Copyright 2015 The Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.etcd.io%2Fetcd%2Fclient/v2 v2.305.10 - Apache-2.0 + + +Copyright 2015 The etcd +Copyright 2016 The etcd +Copyright 2017 The etcd +Copyright 2019 The etcd +Copyright 2015 The Go Authors + Apache License Version 2.0, January 2004 @@ -32209,20 +31980,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.etcd.io%2Fetcd%2Fraft/v3 v3.5.10 - Apache-2.0 - - -Copyright 2015 The etcd -Copyright 2016 The etcd -Copyright 2019 The etcd -Copyright 2021 The etcd - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.etcd.io%2fetcd%2fclient/v3 v3.5.11 - Apache-2.0 + + +Copyright 2015 The etcd +Copyright 2016 The etcd +Copyright 2017 The etcd +Copyright 2018 The etcd +Copyright 2019 The etcd +Copyright 2020 The etcd +Copyright 2021 The etcd + Apache License Version 2.0, January 2004 @@ -32319,25 +32093,26 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.etcd.io%2Fetcd%2Fserver/v3 v3.5.10 - Apache-2.0 - - -Copyright 2015 The etcd -Copyright 2016 The etcd -Copyright 2017 The etcd -Copyright 2018 The etcd -Copyright 2020 The etcd -Copyright 2021 The etcd -Copyright 2022 The etcd -Copyright 2023 The etcd -Copyright 2013 The Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.etcd.io%2Fetcd%2Fpkg/v3 v3.5.10 - Apache-2.0 + + +Copyright 2014 The etcd +Copyright 2015 The etcd +Copyright 2016 The etcd +Copyright 2017 The etcd +Copyright 2018 The etcd +Copyright 2019 The etcd +Copyright 2021 The etcd +Copyright 2022 The etcd +Copyright 2009 The Go Authors +Copyright 2015 The Go Authors + Apache License Version 2.0, January 2004 @@ -32434,54 +32209,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.mongodb.org/mongo-driver v1.13.1 - Apache-2.0 - - -Copyright (c) MongoDB -Copyright (c) 2014 youmark -Copyright (c) MongoDB, Inc. -Copyright (c) 2018 Mark Bates -Copyright (c) 2019 Klaus Post -Copyright 2009 The Go Authors -Copyright 2012 The Go Authors -Copyright 2013 Patrick Mezard -Copyright 2014 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2014-2015 Stripe, Inc. -Copyright (c) 2009 The Go Authors -Copyright (c) 2012 The Go Authors -Copyright (c) 2017 The Go Authors -Copyright (c) 2018 The Go Authors -Copyright (c) 2019 The Go Authors -Copyright (c) 2013, Patrick Mezard -Copyright (c) 2016 by MongoDB, Inc -Copyright (c) 2011-2019 Canonical Ltd -Copyright (c) 2006-2010 Kirill Simonov -Copyright (c) 2006-2011 Kirill Simonov -Copyright (c) 2011 The Snappy-Go Authors -Copyright (c) MongoDB, Inc. 2017-present -Copyright (c) MongoDB, Inc. 2018-present -Copyright (c) MongoDB, Inc. 2019-present -Copyright (c) MongoDB, Inc. 2020-present -Copyright (c) MongoDB, Inc. 2021-present -Copyright (c) MongoDB, Inc. 2022-present -Copyright (c) MongoDB, Inc. 2023-present -Copyright (c) 2015, Dave Cheney -Copyright 2015 Amazon.com, Inc. or its affiliates -Copyright (c) 2012-2016 Dave Collins -Copyright 2020 Mat Ryer, Tyler Bunnell and all contributors -Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors -Copyright (c) 2014-2015 Montana Flynn (https://anonfunction.com) -Copyright (c) 2010-2013 - Gustavo Niemeyer -Copyright (c) 2017 marvin + konsorten GmbH (open-source@konsorten.de) - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.etcd.io%2Fetcd%2Fraft/v3 v3.5.10 - Apache-2.0 + + +Copyright 2015 The etcd +Copyright 2016 The etcd +Copyright 2019 The etcd +Copyright 2021 The etcd + Apache License Version 2.0, January 2004 @@ -32578,16 +32319,25 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io%2Fcontrib%2Finstrumentation%2Fgoogle.golang.org%2Fgrpc/otelgrpc v0.45.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.etcd.io%2Fetcd%2Fserver/v3 v3.5.10 - Apache-2.0 + + +Copyright 2015 The etcd +Copyright 2016 The etcd +Copyright 2017 The etcd +Copyright 2018 The etcd +Copyright 2020 The etcd +Copyright 2021 The etcd +Copyright 2022 The etcd +Copyright 2023 The etcd +Copyright 2013 The Go Authors + Apache License Version 2.0, January 2004 @@ -32684,16 +32434,54 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io%2Fcontrib%2Finstrumentation%2Fnet%2Fhttp/otelhttp v0.45.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.mongodb.org/mongo-driver v1.13.1 - Apache-2.0 + + +Copyright (c) MongoDB +Copyright (c) 2014 youmark +Copyright (c) MongoDB, Inc. +Copyright (c) 2018 Mark Bates +Copyright (c) 2019 Klaus Post +Copyright 2009 The Go Authors +Copyright 2012 The Go Authors +Copyright 2013 Patrick Mezard +Copyright 2014 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2014-2015 Stripe, Inc. +Copyright (c) 2009 The Go Authors +Copyright (c) 2012 The Go Authors +Copyright (c) 2017 The Go Authors +Copyright (c) 2018 The Go Authors +Copyright (c) 2019 The Go Authors +Copyright (c) 2013, Patrick Mezard +Copyright (c) 2016 by MongoDB, Inc +Copyright (c) 2011-2019 Canonical Ltd +Copyright (c) 2006-2010 Kirill Simonov +Copyright (c) 2006-2011 Kirill Simonov +Copyright (c) 2011 The Snappy-Go Authors +Copyright (c) MongoDB, Inc. 2017-present +Copyright (c) MongoDB, Inc. 2018-present +Copyright (c) MongoDB, Inc. 2019-present +Copyright (c) MongoDB, Inc. 2020-present +Copyright (c) MongoDB, Inc. 2021-present +Copyright (c) MongoDB, Inc. 2022-present +Copyright (c) MongoDB, Inc. 2023-present +Copyright (c) 2015, Dave Cheney +Copyright 2015 Amazon.com, Inc. or its affiliates +Copyright (c) 2012-2016 Dave Collins +Copyright 2020 Mat Ryer, Tyler Bunnell and all contributors +Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors +Copyright (c) 2014-2015 Montana Flynn (https://anonfunction.com) +Copyright (c) 2010-2013 - Gustavo Niemeyer +Copyright (c) 2017 marvin + konsorten GmbH (open-source@konsorten.de) + Apache License Version 2.0, January 2004 @@ -32790,16 +32578,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io%2Fotel%2Fexporters%2Fotlp%2Fotlptrace/otlptracegrpc v1.19.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io%2Fcontrib%2Finstrumentation%2Fgoogle.golang.org%2Fgrpc/otelgrpc v0.45.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -32896,16 +32684,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io%2Fotel%2Fexporters%2Fotlp%2Fotlptrace/otlptracehttp v1.19.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io%2Fcontrib%2Finstrumentation%2Fnet%2Fhttp/otelhttp v0.45.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -33002,16 +32790,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io%2Fotel%2Fexporters%2Fotlp/otlptrace v1.19.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io%2Fotel%2Fexporters%2Fotlp%2Fotlptrace/otlptracegrpc v1.19.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -33108,16 +32896,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io%2Fotel%2Fsdk/metric v1.23.1 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io%2Fotel%2Fexporters%2Fotlp%2Fotlptrace/otlptracehttp v1.19.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -33214,16 +33002,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io%2fotel/metric v1.23.1 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io%2Fotel%2Fexporters%2Fotlp/otlptrace v1.19.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -33320,16 +33108,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io%2fotel/sdk v1.23.1 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io%2Fotel%2Fsdk/metric v1.23.1 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -33426,16 +33214,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io%2fotel/trace v1.23.1 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io%2fotel/metric v1.23.1 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -33532,18 +33320,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io%2fproto/otlp v1.0.0 - Apache-2.0 - - -Copyright 2019, OpenTelemetry -Copyright 2020, OpenTelemetry - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io%2fotel/sdk v1.23.1 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -33640,16 +33426,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io/otel v1.23.1 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io%2fotel/trace v1.23.1 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -33746,23 +33532,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.uber.org/mock v0.3.0 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2010 Google Inc. -Copyright 2010 Google LLC. -Copyright 2011 Google Inc. -Copyright 2012 Google Inc. -Copyright 2020 Google Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io%2fproto/otlp v1.0.0 - Apache-2.0 + + +Copyright 2019, OpenTelemetry +Copyright 2020, OpenTelemetry + Apache License Version 2.0, January 2004 @@ -33859,16 +33640,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gomodules.xyz%2Fjsonpatch/v2 v2.4.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io/otel v1.23.1 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -33965,21 +33746,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -google.golang.org%2fgenproto%2fgoogleapis/api v0.0.0-20240123012728-ef4313101c80 - Apache-2.0 - - -Copyright 2015 Google LLC -Copyright 2016 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2019 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.uber.org/mock v0.3.0 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2010 Google Inc. +Copyright 2010 Google LLC. +Copyright 2011 Google Inc. +Copyright 2012 Google Inc. +Copyright 2020 Google Inc. + Apache License Version 2.0, January 2004 @@ -34076,18 +33859,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -google.golang.org%2Fgenproto%2Fgoogleapis/rpc v0.0.0-20240123012728-ef4313101c80 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gomodules.xyz%2Fjsonpatch/v2 v2.4.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -34184,17 +33965,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -google.golang.org%2Fgrpc%2Fcmd/protoc-gen-go-grpc v1.3.0 - Apache-2.0 - - -Copyright 2020 gRPC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +google.golang.org%2fgenproto%2fgoogleapis/api v0.0.0-20240123012728-ef4313101c80 - Apache-2.0 + + +Copyright 2015 Google LLC +Copyright 2016 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2019 Google LLC. + Apache License Version 2.0, January 2004 @@ -34291,25 +34076,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -google.golang.org/appengine v1.6.8 - Apache-2.0 - - -Copyright 2011 Google Inc. -Copyright 2012 Google Inc. -Copyright 2013 Google Inc. -Copyright 2014 Google Inc. -Copyright 2015 Google Inc. -Copyright 2016 Google Inc. -Copyright 2018 Google LLC. -Copyright 2019 Google Inc. -Copyright 2011 The Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +google.golang.org%2Fgenproto%2Fgoogleapis/rpc v0.0.0-20240123012728-ef4313101c80 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -34406,29 +34184,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -google.golang.org/genproto v0.0.0-20240123012728-ef4313101c80 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2016 Google Inc. -Copyright 2017 Google Inc. -Copyright 2018 Google Inc. -Copyright 2019 Google LLC. -Copyright 2020 Google LLC. -Copyright 2021 Google LLC. -Copyright (c) 2015, Google Inc. -Copyright 2018 The Grafeas Authors -Copyright 2019 The Grafeas Authors -Copyright 2021 The Grafeas Authors -Copyright 2023 The Grafeas Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +google.golang.org%2Fgrpc%2Fcmd/protoc-gen-go-grpc v1.3.0 - Apache-2.0 + + +Copyright 2020 gRPC + Apache License Version 2.0, January 2004 @@ -34525,32 +34291,25 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -google.golang.org/grpc v1.62.0 - Apache-2.0 - - -Copyright 2014 gRPC -Copyright 2015 gRPC -Copyright 2016 gRPC -Copyright 2017 gRPC -Copyright 2018 gRPC -Copyright 2019 gRPC -Copyright 2020 gRPC -Copyright 2021 gRPC -Copyright 2022 gRPC -Copyright 2023 gRPC -Copyright 2024 gRPC -Copyright 2015 The gRPC -Copyright 2016 The gRPC -Copyright 2018 The gRPC -Copyright 2020 The gRPC -Copyright 2015-2016 gRPC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +google.golang.org/appengine v1.6.8 - Apache-2.0 + + +Copyright 2011 Google Inc. +Copyright 2012 Google Inc. +Copyright 2013 Google Inc. +Copyright 2014 Google Inc. +Copyright 2015 Google Inc. +Copyright 2016 Google Inc. +Copyright 2018 Google LLC. +Copyright 2019 Google Inc. +Copyright 2011 The Go Authors + Apache License Version 2.0, January 2004 @@ -34647,24 +34406,29 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in%2Fsquare/go-jose.v2 v2.6.0 - Apache-2.0 - - -Copyright 2014 Square Inc. -Copyright 2017 Square Inc. -Copyright 2018 Square Inc. -Copyright 2016 Square, Inc. -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright (c) 2012 The Go Authors -Copyright 2016 Zbigniew Mandziejewicz - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +google.golang.org/genproto v0.0.0-20240123012728-ef4313101c80 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2016 Google Inc. +Copyright 2017 Google Inc. +Copyright 2018 Google Inc. +Copyright 2019 Google LLC. +Copyright 2020 Google LLC. +Copyright 2021 Google LLC. +Copyright (c) 2015, Google Inc. +Copyright 2018 The Grafeas Authors +Copyright 2019 The Grafeas Authors +Copyright 2021 The Grafeas Authors +Copyright 2023 The Grafeas Authors + Apache License Version 2.0, January 2004 @@ -34761,21 +34525,32 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in/ini.v1 v1.67.0 - Apache-2.0 - - -Copyright 2014 Unknwon -Copyright 2015 Unknwon -Copyright 2016 Unknwon -Copyright 2017 Unknwon -Copyright 2019 Unknwon - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +google.golang.org/grpc v1.62.0 - Apache-2.0 + + +Copyright 2014 gRPC +Copyright 2015 gRPC +Copyright 2016 gRPC +Copyright 2017 gRPC +Copyright 2018 gRPC +Copyright 2019 gRPC +Copyright 2020 gRPC +Copyright 2021 gRPC +Copyright 2022 gRPC +Copyright 2023 gRPC +Copyright 2024 gRPC +Copyright 2015 The gRPC +Copyright 2016 The gRPC +Copyright 2018 The gRPC +Copyright 2020 The gRPC +Copyright 2015-2016 gRPC + Apache License Version 2.0, January 2004 @@ -34872,18 +34647,24 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in/yaml.v2 v2.4.0 - Apache-2.0 - - -Copyright (c) 2006 Kirill Simonov -Copyright 2011-2016 Canonical Ltd. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in%2Fsquare/go-jose.v2 v2.6.0 - Apache-2.0 + + +Copyright 2014 Square Inc. +Copyright 2017 Square Inc. +Copyright 2018 Square Inc. +Copyright 2016 Square, Inc. +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright (c) 2012 The Go Authors +Copyright 2016 Zbigniew Mandziejewicz + Apache License Version 2.0, January 2004 @@ -34980,20 +34761,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in/yaml.v3 v3.0.1 - Apache-2.0 - - -Copyright 2011-2016 Canonical Ltd. -Copyright (c) 2011-2019 Canonical Ltd -Copyright (c) 2006-2010 Kirill Simonov -Copyright (c) 2006-2011 Kirill Simonov - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in/ini.v1 v1.67.0 - Apache-2.0 + + +Copyright 2014 Unknwon +Copyright 2015 Unknwon +Copyright 2016 Unknwon +Copyright 2017 Unknwon +Copyright 2019 Unknwon + Apache License Version 2.0, January 2004 @@ -35090,18 +34872,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gotest.tools/v3 v3.5.1 - Apache-2.0 - - -Copyright 2018 gotest.tools -Copyright (c) 2013, Patrick Mezard - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in/yaml.v2 v2.4.0 - Apache-2.0 + + +Copyright (c) 2006 Kirill Simonov +Copyright 2011-2016 Canonical Ltd. + Apache License Version 2.0, January 2004 @@ -35198,236 +34980,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -human-signals 2.1.0 - Apache-2.0 -https://git.io/JeluP - -Copyright 2019 ehmicky - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS +limitations under the License. - APPENDIX: How to apply the Apache License to your work. +--------------------------------------------------------- - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. +--------------------------------------------------------- - Copyright 2019 ehmicky +gopkg.in/yaml.v3 v3.0.1 - Apache-2.0 - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 +Copyright 2011-2016 Canonical Ltd. +Copyright (c) 2011-2019 Canonical Ltd +Copyright (c) 2006-2010 Kirill Simonov +Copyright (c) 2006-2011 Kirill Simonov - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -k8s.io%2fklog/v2 v2.110.1 - Apache-2.0 - - -Copyright 2013 Google Inc. -Copyright 2020 Intel Coporation -Copyright 2014 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors. -Copyright 2021 The Kubernetes Authors. - Apache License Version 2.0, January 2004 @@ -35524,25 +35090,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -k8s.io/api v0.29.3 - Apache-2.0 - - -Copyright 2015 The Kubernetes Authors -Copyright 2016 The Kubernetes Authors -Copyright 2017 The Kubernetes Authors -Copyright 2018 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors -Copyright 2021 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gotest.tools/v3 v3.5.1 - Apache-2.0 + + +Copyright 2018 gotest.tools +Copyright (c) 2013, Patrick Mezard + Apache License Version 2.0, January 2004 @@ -35639,146 +35198,236 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -k8s.io/apimachinery v0.29.3 - Apache-2.0 - - -Copyright 2009 The Go Authors -Copyright 2013 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright 2014 The Kubernetes Authors -Copyright 2015 The Kubernetes Authors -Copyright 2016 The Kubernetes Authors -Copyright 2017 The Kubernetes Authors -Copyright 2018 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors -Copyright 2021 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors - -Apache License - -Version 2.0, January 2004 - -http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - +limitations under the License. - "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. +--------------------------------------------------------- - +--------------------------------------------------------- - "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. +human-signals 2.1.0 - Apache-2.0 +https://git.io/JeluP - +Copyright 2019 ehmicky - "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ - + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + 1. Definitions. - + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. - "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. - + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. - "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. - + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. - "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. - + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). - "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. - + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." - "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. - + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. - "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. - 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: - 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and - 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and - (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and - (b) You must cause any modified files to carry prominent notices stating that You changed the files; and + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. - (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. - (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. - You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. - 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. - 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. - 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. - 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + END OF TERMS AND CONDITIONS - 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS + APPENDIX: How to apply the Apache License to your work. -APPENDIX: How to apply the Apache License to your work. + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. -To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + Copyright 2019 ehmicky -Copyright [yyyy] [name of copyright owner] + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at -Licensed under the Apache License, Version 2.0 (the "License"); + http://www.apache.org/licenses/LICENSE-2.0 -you may not use this file except in compliance with the License. + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. -You may obtain a copy of the License at -http://www.apache.org/licenses/LICENSE-2.0 +--------------------------------------------------------- -Unless required by applicable law or agreed to in writing, software +--------------------------------------------------------- -distributed under the License is distributed on an "AS IS" BASIS, +k8s.io%2fklog/v2 v2.110.1 - Apache-2.0 -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and +Copyright 2013 Google Inc. +Copyright 2020 Intel Coporation +Copyright 2014 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors. +Copyright 2021 The Kubernetes Authors. -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -k8s.io/client-go v0.29.3 - Apache-2.0 - - -Copyright (c) 2009 The Go Authors -Copyright 2014 The Kubernetes Authors -Copyright 2015 The Kubernetes Authors -Copyright 2016 The Kubernetes Authors -Copyright 2017 The Kubernetes Authors -Copyright 2018 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors -Copyright 2021 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors - Apache License Version 2.0, January 2004 @@ -35875,25 +35524,25 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -k8s.io/code-generator v0.29.3 - Apache-2.0 - - -Copyright (c) 2009 The Go Authors -Copyright 2015 The Kubernetes Authors -Copyright 2016 The Kubernetes Authors -Copyright 2017 The Kubernetes Authors -Copyright 2018 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors -Copyright 2021 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +k8s.io/api v0.29.3 - Apache-2.0 + + +Copyright 2015 The Kubernetes Authors +Copyright 2016 The Kubernetes Authors +Copyright 2017 The Kubernetes Authors +Copyright 2018 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors +Copyright 2021 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -35990,22 +35639,29 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -k8s.io/gengo v0.0.0-20230829151522-9cce18d56c01 - Apache-2.0 - - -Copyright 2014 The Kubernetes Authors -Copyright 2015 The Kubernetes Authors -Copyright 2016 The Kubernetes Authors -Copyright 2017 The Kubernetes Authors -Copyright 2018 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +k8s.io/apimachinery v0.29.3 - Apache-2.0 + + +Copyright 2009 The Go Authors +Copyright 2013 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright 2014 The Kubernetes Authors +Copyright 2015 The Kubernetes Authors +Copyright 2016 The Kubernetes Authors +Copyright 2017 The Kubernetes Authors +Copyright 2018 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors +Copyright 2021 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -36102,32 +35758,27 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 - Apache-2.0 - - -Copyright 2015 go-swagger -Copyright 2017 go-swagger -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright 2022 The Go Authors -Copyright (c) 2020 The Go Authors -Copyright 2016 The Kubernetes Authors -Copyright 2017 The Kubernetes Authors -Copyright 2018 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors -Copyright 2021 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors -Copyright (c) MongoDB, Inc. 2017-present -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +k8s.io/client-go v0.29.3 - Apache-2.0 + + +Copyright (c) 2009 The Go Authors +Copyright 2014 The Kubernetes Authors +Copyright 2015 The Kubernetes Authors +Copyright 2016 The Kubernetes Authors +Copyright 2017 The Kubernetes Authors +Copyright 2018 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors +Copyright 2021 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -36224,31 +35875,25 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -k8s.io/utils v0.0.0-20231127182322-b307cd553661 - Apache-2.0 - - -Copyright 2013 Google Inc. -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright (c) 2012 The Go Authors -Copyright 2014 The Kubernetes Authors -Copyright 2015 The Kubernetes Authors -Copyright 2016 The Kubernetes Authors -Copyright 2017 The Kubernetes Authors -Copyright 2018 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors -Copyright 2021 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +k8s.io/code-generator v0.29.3 - Apache-2.0 + + +Copyright (c) 2009 The Go Authors +Copyright 2015 The Kubernetes Authors +Copyright 2016 The Kubernetes Authors +Copyright 2017 The Kubernetes Authors +Copyright 2018 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors +Copyright 2021 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -36345,17 +35990,22 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -oras.land%2Foras-go/v2 v2.3.1 - Apache-2.0 - - -Copyright 2021 ORAS Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +k8s.io/gengo v0.0.0-20230829151522-9cce18d56c01 - Apache-2.0 + + +Copyright 2014 The Kubernetes Authors +Copyright 2015 The Kubernetes Authors +Copyright 2016 The Kubernetes Authors +Copyright 2017 The Kubernetes Authors +Copyright 2018 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -36452,18 +36102,368 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-helmet-async 1.3.0 - Apache-2.0 -https://github.com/staylor/react-helmet-async#readme - -Copyright (c) 2018 Scott Taylor -Copyright 2018 The New York Times Company - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 - Apache-2.0 + + +Copyright 2015 go-swagger +Copyright 2017 go-swagger +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright 2022 The Go Authors +Copyright (c) 2020 The Go Authors +Copyright 2016 The Kubernetes Authors +Copyright 2017 The Kubernetes Authors +Copyright 2018 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors +Copyright 2021 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors +Copyright (c) MongoDB, Inc. 2017-present +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + + + "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + + + + "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + + + + "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + + + + "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + + + + "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + + + + "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + + + + "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + + + + "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + + + + "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + + + + "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + + You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); + +you may not use this file except in compliance with the License. + +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software + +distributed under the License is distributed on an "AS IS" BASIS, + +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + +See the License for the specific language governing permissions and + +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +k8s.io/utils v0.0.0-20231127182322-b307cd553661 - Apache-2.0 + + +Copyright 2013 Google Inc. +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright (c) 2012 The Go Authors +Copyright 2014 The Kubernetes Authors +Copyright 2015 The Kubernetes Authors +Copyright 2016 The Kubernetes Authors +Copyright 2017 The Kubernetes Authors +Copyright 2018 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors +Copyright 2021 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors + +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + + + "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + + + + "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + + + + "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + + + + "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + + + + "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + + + + "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + + + + "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + + + + "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + + + + "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + + + + "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + + You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); + +you may not use this file except in compliance with the License. + +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software + +distributed under the License is distributed on an "AS IS" BASIS, + +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + +See the License for the specific language governing permissions and + +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +oras.land%2Foras-go/v2 v2.3.1 - Apache-2.0 + + +Copyright 2021 ORAS Authors + +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + + + "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + + + + "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + + + + "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + + + + "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + + + + "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + + + + "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + + + + "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + + + + "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + + + + "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + + + + "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + + You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); + +you may not use this file except in compliance with the License. + +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software + +distributed under the License is distributed on an "AS IS" BASIS, + +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + +See the License for the specific language governing permissions and + +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-helmet-async 1.3.0 - Apache-2.0 +https://github.com/staylor/react-helmet-async#readme + +Copyright (c) 2018 Scott Taylor +Copyright 2018 The New York Times Company + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -36665,18 +36665,18 @@ Copyright 2018 The New York Times Company WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io%2Fapiserver-network-proxy/konnectivity-client v0.28.0 - Apache-2.0 - - -Copyright 2019 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io%2Fapiserver-network-proxy/konnectivity-client v0.28.0 - Apache-2.0 + + +Copyright 2019 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -36773,20 +36773,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io%2Fkustomize%2Fkustomize/v5 v5.0.4-0.20230601165947-6ce0bf390ce3 - Apache-2.0 - - -Copyright 2019 The Kubernetes Authors. -Copyright 2020 The Kubernetes Authors. -Copyright 2021 The Kubernetes Authors. -Copyright 2022 The Kubernetes Authors. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io%2Fkustomize%2Fkustomize/v5 v5.0.4-0.20230601165947-6ce0bf390ce3 - Apache-2.0 + + +Copyright 2019 The Kubernetes Authors. +Copyright 2020 The Kubernetes Authors. +Copyright 2021 The Kubernetes Authors. +Copyright 2022 The Kubernetes Authors. + Apache License Version 2.0, January 2004 @@ -36883,16 +36883,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io%2fkustomize/api v0.14.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io%2fkustomize/api v0.14.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -36989,29 +36989,29 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io%2fkustomize/kyaml v0.14.3 - Apache-2.0 - - -Copyright (c) 2018 QRI, Inc. -Copyright 2011-2016 Canonical Ltd. -Copyright (c) 2011-2019 Canonical Ltd -Copyright 2014 The Kubernetes Authors -Copyright 2015 The Kubernetes Authors -Copyright 2016 The Kubernetes Authors -Copyright (c) 2006-2010 Kirill Simonov -Copyright (c) 2006-2011 Kirill Simonov -Copyright 2018 The Kubernetes Authors. -Copyright 2019 The Kubernetes Authors. -Copyright 2020 The Kubernetes Authors. -Copyright 2021 The Kubernetes Authors. -Copyright 2022 The Kubernetes Authors. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io%2fkustomize/kyaml v0.14.3 - Apache-2.0 + + +Copyright (c) 2018 QRI, Inc. +Copyright 2011-2016 Canonical Ltd. +Copyright (c) 2011-2019 Canonical Ltd +Copyright 2014 The Kubernetes Authors +Copyright 2015 The Kubernetes Authors +Copyright 2016 The Kubernetes Authors +Copyright (c) 2006-2010 Kirill Simonov +Copyright (c) 2006-2011 Kirill Simonov +Copyright 2018 The Kubernetes Authors. +Copyright 2019 The Kubernetes Authors. +Copyright 2020 The Kubernetes Authors. +Copyright 2021 The Kubernetes Authors. +Copyright 2022 The Kubernetes Authors. + Apache License Version 2.0, January 2004 @@ -37108,20 +37108,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io%2fstructured-merge-diff/v4 v4.4.1 - Apache-2.0 - - -Copyright 2018 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io%2fstructured-merge-diff/v4 v4.4.1 - Apache-2.0 + + +Copyright 2018 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -37218,26 +37218,26 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io/controller-runtime v0.16.3 - Apache-2.0 - - -Copyright 2014 The Kubernetes Authors -Copyright 2016 The Kubernetes Authors -Copyright 2017 The Kubernetes Authors -Copyright 2018 The Kubernetes Authors -Copyright 2018 The Kubernetes authors -Copyright 2019 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors -Copyright 2021 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io/controller-runtime v0.16.3 - Apache-2.0 + + +Copyright 2014 The Kubernetes Authors +Copyright 2016 The Kubernetes Authors +Copyright 2017 The Kubernetes Authors +Copyright 2018 The Kubernetes Authors +Copyright 2018 The Kubernetes authors +Copyright 2019 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors +Copyright 2021 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -37334,20 +37334,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io/controller-tools v0.13.0 - Apache-2.0 - - -Copyright 2018 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors -Copyright 2019-2022 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io/controller-tools v0.13.0 - Apache-2.0 + + +Copyright 2018 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors +Copyright 2019-2022 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -37444,25 +37444,25 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd - Apache-2.0 - - -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2013 The Go Authors -Copyright 2016 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2021 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright 2021 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd - Apache-2.0 + + +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2013 The Go Authors +Copyright 2016 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2021 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright 2021 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -37559,21 +37559,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io/release-utils v0.7.7 - Apache-2.0 - - -Copyright 2015 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors -Copyright 2021 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io/release-utils v0.7.7 - Apache-2.0 + + +Copyright 2015 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors +Copyright 2021 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -37670,20 +37670,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io/security-profiles-operator v0.8.2 - Apache-2.0 - - -Copyright 2020 The Kubernetes Authors -Copyright 2021 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io/security-profiles-operator v0.8.2 - Apache-2.0 + + +Copyright 2020 The Kubernetes Authors +Copyright 2021 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -37780,16 +37780,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -tags.cncf.io%2Fcontainer-device-interface/specs-go v0.6.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +tags.cncf.io%2Fcontainer-device-interface/specs-go v0.6.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -37886,23 +37886,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -tags.cncf.io/container-device-interface v0.6.2 - Apache-2.0 - - -IsLetter (c) IsDigit (c) -Copyright (c) The CDI Authors -Copyright (c) 2021 The CDI Authors -Copyright (c) 2022 The CDI Authors -Copyright 2014 The Kubernetes Authors -Copyright (c) 2021-2022 The CDI Authors -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +tags.cncf.io/container-device-interface v0.6.2 - Apache-2.0 + + +IsLetter (c) IsDigit (c) +Copyright (c) The CDI Authors +Copyright (c) 2021 The CDI Authors +Copyright (c) 2022 The CDI Authors +Copyright 2014 The Kubernetes Authors +Copyright (c) 2021-2022 The CDI Authors +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -37999,17 +37999,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -websocket-driver 0.7.4 - Apache-2.0 -https://github.com/faye/websocket-driver-node - -Copyright 2010-2020 James Coglan - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +websocket-driver 0.7.4 - Apache-2.0 +https://github.com/faye/websocket-driver-node + +Copyright 2010-2020 James Coglan + Copyright 2010-2020 James Coglan Licensed under the Apache License, Version 2.0 (the "License"); you may not use @@ -38022,17 +38022,17 @@ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -websocket-extensions 0.1.4 - Apache-2.0 -http://github.com/faye/websocket-extensions-node - -Copyright 2014-2020 James Coglan - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +websocket-extensions 0.1.4 - Apache-2.0 +http://github.com/faye/websocket-extensions-node + +Copyright 2014-2020 James Coglan + Copyright 2014-2020 James Coglan Licensed under the Apache License, Version 2.0 (the "License"); you may not use @@ -38045,298 +38045,298 @@ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle/cel-go v0.17.7 - Apache-2.0 AND BSD-3-Clause - - -Copyright 2018 Google LLC -Copyright 2019 Google LLC -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright (c) 2018 The Go Authors - -Apache-2.0 AND BSD-3-Clause - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fishidawataru/sctp v0.0.0-20210707070123-9a39160e9062 - Apache-2.0 AND BSD-3-Clause - - -Copyright 2019 Wataru Ishida -Copyright 2009 The Go Authors -Copyright (c) 2009 The Go Authors - -Apache-2.0 AND BSD-3-Clause - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmoby%2Fsys/symlink v0.2.0 - Apache-2.0 AND BSD-3-Clause - - -Copyright 2012 The Go Authors -Copyright 2014-2018 Docker, Inc. -Copyright (c) 2014-2018 The Docker & Go Authors - -Apache-2.0 AND BSD-3-Clause - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fklauspost/compress v1.17.3 - Apache-2.0 AND BSD-3-Clause AND MIT - - -(c) 2007 Credit -Klaus Post (c) 2015 -(c) Credit Agricole 2011 -Copyright 2018 Klaus Post -Copyright 2023 Google LLC -Copyright 2020+ Klaus Post -Copyright 2023+ Klaus Post -Copyright (c) 2023'. Search -Copyright (c) 2016 Evan Huus -Copyright 2016 The filepathx -Copyright (c) 2015 Klaus Post -Copyright (c) 2019 Klaus Post -Copyright (c) 2021 Klaus Post -Copyright (c) 2022 Klaus Post -Copyright (c) 2023 Klaus Post -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2014 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2019 The Go Authors -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright (c) 2016 Caleb Spare -Copyright (c) 2019+ Klaus Post -Copyright (c) 2022+ Klaus Post -Copyright (c) 2023+ Klaus Post -Copyright (c) 2013, Yann Collet -Copyright (c) 2015, Pierre Curto -Copyright (c) 2012 The Go Authors -Copyright 2011 The Snappy-Go Authors -Copyright 2016 The Snappy-Go Authors -Copyright (c) 2011 The Snappy-Go Authors -Copyright 2016-2017 The New York Times Company -Copyright 2022 d MakeDict(rawDict, byte(searchFor)) -Copyright (c) 2023 b d.Bytes will provide a dictionary -Copyright (c) 2023 b dict.Bytes will provide a dictionary - -Apache-2.0 AND BSD-3-Clause AND MIT - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io/yaml v1.4.0 - Apache-2.0 AND BSD-3-Clause AND MIT - - -Copyright (c) 2014 Sam Ghods -Copyright 2013 The Go Authors -Copyright (c) 2006 Kirill Simonov -Copyright (c) 2012 The Go Authors -Copyright 2011-2016 Canonical Ltd. -Copyright (c) 2011-2019 Canonical Ltd -Copyright 2021 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors -Copyright (c) 2006-2010 Kirill Simonov -Copyright (c) 2006-2011 Kirill Simonov - -Apache-2.0 AND BSD-3-Clause AND MIT - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgodror/godror v0.24.2 - Apache-2.0 AND BSD-3-Clause AND MIT AND UPL-1.0 - - -Copyright (c) 2015 go-logfmt -Copyright 2016 Tamas Gulacsi -Copyright 2019 Tamas Gulacsi -Copyright 2020 Tamas Gulacsi -Copyright (c) 2009 The Go Authors -Copyright (c) 2017 The Go Authors -Copyright (c) 2019 The Go Authors -Copyright 2020 The Godror Authors -Copyright 2021 The Godror Authors -Copyright 2017, 2020 Tamas Gulacsi -Copyright 2017, 2020 The Godror Authors -Copyright 2018, 2020 The Godror Authors -Copyright 2019, 2020 The Godror Authors -Copyright (c) 2017, Oracle and/or its affiliates -Copyright (c) 2018, Oracle and/or its affiliates -Copyright (c) 2019, Oracle and/or its affiliates -Copyright (c) 2020, Oracle and/or its affiliates -Copyright (c) 2016, 2018 Oracle and/or its affiliates -Copyright (c) 2016, 2017, Oracle and/or its affiliates -Copyright (c) 2016, 2018, Oracle and/or its affiliates -Copyright (c) 2016, 2019, Oracle and/or its affiliates -Copyright (c) 2016, 2020, Oracle and/or its affiliates -Copyright (c) 2017, 2020, Oracle and/or its affiliates -Copyright (c) 2018, 2020, Oracle and/or its affiliates - -Apache-2.0 AND BSD-3-Clause AND MIT AND UPL-1.0 - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdocker/go-metrics v0.0.1 - Apache-2.0 AND CC-BY-SA-4.0 - - -Copyright (c) 2016 Docker, Inc. -Copyright 2012-2015 Docker, Inc. -Copyright 2013-2016 Docker, Inc. -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - -Apache-2.0 AND CC-BY-SA-4.0 - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fopencontainers/go-digest v1.0.0 - Apache-2.0 AND CC-BY-SA-4.0 - - -Copyright 2016 Docker, Inc. -Copyright 2017 Docker, Inc. -Copyright (c) 2016 Docker, Inc. -Copyright 2019, 2020 OCI Contributors -Copyright 2020, 2020 OCI Contributors -Copyright (c) 2019, 2020 OCI Contributors -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - -Apache-2.0 AND CC-BY-SA-4.0 - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Foneofone/xxhash v1.2.8 - Apache-2.0 AND ImageMagick - - -(c) 2012-2014, Yann Collet -Copyright (https://github.com/Cyan4973/xxHash/blob/master/LICENSE) - -Apache-2.0 AND ImageMagick - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fbgentry/speakeasy v0.1.0 - Apache-2.0 AND MIT - - -Copyright (c) 2017 Blake Gentry -Copyright 2013 the CloudFoundry Authors - -Apache-2.0 AND MIT - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fpelletier/go-toml v1.9.5 - Apache-2.0 AND MIT - - -Copyright 2016 Google LLC -Copyright (c) 2013 - 2021 Thomas Pelletier, Eric Anderton - -Apache-2.0 AND MIT - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fsergi/go-diff v1.1.0 - Apache-2.0 AND MIT - - -Copyright (c) 2012-2016 The go-diff Authors -Copyright (c) 2012-2016 The go-diff authors -Copyright (c) 2006 Google Inc. http://code.google.com/p/google-diff-match-patch -Copyright (c) 2006 Google Inc. - -Apache-2.0 AND MIT - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fcontainernetworking/plugins v1.4.0 - Apache-2.0 AND NOASSERTION - - -Copyright 2014 CNI authors -Copyright 2015 CNI authors -Copyright 2016 CNI authors -Copyright 2017 CNI authors -Copyright 2018 CNI authors -Copyright 2019 CNI authors -Copyright 2020 CNI authors -Copyright 2021 CNI authors -Copyright 2022 CNI authors -Copyright 2022 Arista Networks -Copyright 2015-2017 CNI authors -Copyright 2015-2018 CNI authors -Copyright 2016-2018 CNI authors -Copyright 2017-2018 CNI authors -Copyright 2017-2020 CNI authors -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - -Apache-2.0 AND NOASSERTION - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.universe.tf/metallb v0.11.0 - Apache-2.0 AND NOASSERTION - - -(c) Zeno Rocha -Copyright (c) 2014 Grav -Copyright Dave Gandy 2016 -Copyright 2017 Google Inc. -Copyright (c) 2016 MATHIEU CORNIC -Copyright (c) 2017 Valere JEANTET -Copyright 2021 The MetalLB Authors -Copyright (c) 2016 Oliver Nightingale -Copyright 2016 The Kubernetes Authors -Copyright (c) The MetalLB Contributors -(c) OpenJS Foundation and other contributors -Copyright (c) 2010-2011 by tyPoland Lukasz Dziedzic -Copyright 2015, Noel Raoul Bossart (http://www.noelboss.com) -Copyright (c) 2021 The Linux Foundation (r). The Linux Foundation -Copyright (c) 2004, 2006 The Linux Foundation and its contributors -(c) 2010-2011 by tyPoland Lukasz Dziedzic (http://www.typoland.com/) -Copyright (c) 2014 Simon Steinberger / Pixabay GitHub https://github.com/Pixabay/JavaScript-autoComplete - -Apache-2.0 AND NOASSERTION - ---------------------------------------------------------- - ---------------------------------------------------------- - -cheerio-select 2.1.0 - BSD-2-Clause -https://github.com/cheeriojs/cheerio-select#readme - -Copyright (c) Felix Bohm - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle/cel-go v0.17.7 - Apache-2.0 AND BSD-3-Clause + + +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright (c) 2018 The Go Authors + +Apache-2.0 AND BSD-3-Clause + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fishidawataru/sctp v0.0.0-20210707070123-9a39160e9062 - Apache-2.0 AND BSD-3-Clause + + +Copyright 2019 Wataru Ishida +Copyright 2009 The Go Authors +Copyright (c) 2009 The Go Authors + +Apache-2.0 AND BSD-3-Clause + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmoby%2Fsys/symlink v0.2.0 - Apache-2.0 AND BSD-3-Clause + + +Copyright 2012 The Go Authors +Copyright 2014-2018 Docker, Inc. +Copyright (c) 2014-2018 The Docker & Go Authors + +Apache-2.0 AND BSD-3-Clause + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fklauspost/compress v1.17.3 - Apache-2.0 AND BSD-3-Clause AND MIT + + +(c) 2007 Credit +Klaus Post (c) 2015 +(c) Credit Agricole 2011 +Copyright 2018 Klaus Post +Copyright 2023 Google LLC +Copyright 2020+ Klaus Post +Copyright 2023+ Klaus Post +Copyright (c) 2023'. Search +Copyright (c) 2016 Evan Huus +Copyright 2016 The filepathx +Copyright (c) 2015 Klaus Post +Copyright (c) 2019 Klaus Post +Copyright (c) 2021 Klaus Post +Copyright (c) 2022 Klaus Post +Copyright (c) 2023 Klaus Post +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2014 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2019 The Go Authors +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright (c) 2016 Caleb Spare +Copyright (c) 2019+ Klaus Post +Copyright (c) 2022+ Klaus Post +Copyright (c) 2023+ Klaus Post +Copyright (c) 2013, Yann Collet +Copyright (c) 2015, Pierre Curto +Copyright (c) 2012 The Go Authors +Copyright 2011 The Snappy-Go Authors +Copyright 2016 The Snappy-Go Authors +Copyright (c) 2011 The Snappy-Go Authors +Copyright 2016-2017 The New York Times Company +Copyright 2022 d MakeDict(rawDict, byte(searchFor)) +Copyright (c) 2023 b d.Bytes will provide a dictionary +Copyright (c) 2023 b dict.Bytes will provide a dictionary + +Apache-2.0 AND BSD-3-Clause AND MIT + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io/yaml v1.4.0 - Apache-2.0 AND BSD-3-Clause AND MIT + + +Copyright (c) 2014 Sam Ghods +Copyright 2013 The Go Authors +Copyright (c) 2006 Kirill Simonov +Copyright (c) 2012 The Go Authors +Copyright 2011-2016 Canonical Ltd. +Copyright (c) 2011-2019 Canonical Ltd +Copyright 2021 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors +Copyright (c) 2006-2010 Kirill Simonov +Copyright (c) 2006-2011 Kirill Simonov + +Apache-2.0 AND BSD-3-Clause AND MIT + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgodror/godror v0.24.2 - Apache-2.0 AND BSD-3-Clause AND MIT AND UPL-1.0 + + +Copyright (c) 2015 go-logfmt +Copyright 2016 Tamas Gulacsi +Copyright 2019 Tamas Gulacsi +Copyright 2020 Tamas Gulacsi +Copyright (c) 2009 The Go Authors +Copyright (c) 2017 The Go Authors +Copyright (c) 2019 The Go Authors +Copyright 2020 The Godror Authors +Copyright 2021 The Godror Authors +Copyright 2017, 2020 Tamas Gulacsi +Copyright 2017, 2020 The Godror Authors +Copyright 2018, 2020 The Godror Authors +Copyright 2019, 2020 The Godror Authors +Copyright (c) 2017, Oracle and/or its affiliates +Copyright (c) 2018, Oracle and/or its affiliates +Copyright (c) 2019, Oracle and/or its affiliates +Copyright (c) 2020, Oracle and/or its affiliates +Copyright (c) 2016, 2018 Oracle and/or its affiliates +Copyright (c) 2016, 2017, Oracle and/or its affiliates +Copyright (c) 2016, 2018, Oracle and/or its affiliates +Copyright (c) 2016, 2019, Oracle and/or its affiliates +Copyright (c) 2016, 2020, Oracle and/or its affiliates +Copyright (c) 2017, 2020, Oracle and/or its affiliates +Copyright (c) 2018, 2020, Oracle and/or its affiliates + +Apache-2.0 AND BSD-3-Clause AND MIT AND UPL-1.0 + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdocker/go-metrics v0.0.1 - Apache-2.0 AND CC-BY-SA-4.0 + + +Copyright (c) 2016 Docker, Inc. +Copyright 2012-2015 Docker, Inc. +Copyright 2013-2016 Docker, Inc. +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + +Apache-2.0 AND CC-BY-SA-4.0 + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fopencontainers/go-digest v1.0.0 - Apache-2.0 AND CC-BY-SA-4.0 + + +Copyright 2016 Docker, Inc. +Copyright 2017 Docker, Inc. +Copyright (c) 2016 Docker, Inc. +Copyright 2019, 2020 OCI Contributors +Copyright 2020, 2020 OCI Contributors +Copyright (c) 2019, 2020 OCI Contributors +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + +Apache-2.0 AND CC-BY-SA-4.0 + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Foneofone/xxhash v1.2.8 - Apache-2.0 AND ImageMagick + + +(c) 2012-2014, Yann Collet +Copyright (https://github.com/Cyan4973/xxHash/blob/master/LICENSE) + +Apache-2.0 AND ImageMagick + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fbgentry/speakeasy v0.1.0 - Apache-2.0 AND MIT + + +Copyright (c) 2017 Blake Gentry +Copyright 2013 the CloudFoundry Authors + +Apache-2.0 AND MIT + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fpelletier/go-toml v1.9.5 - Apache-2.0 AND MIT + + +Copyright 2016 Google LLC +Copyright (c) 2013 - 2021 Thomas Pelletier, Eric Anderton + +Apache-2.0 AND MIT + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fsergi/go-diff v1.1.0 - Apache-2.0 AND MIT + + +Copyright (c) 2012-2016 The go-diff Authors +Copyright (c) 2012-2016 The go-diff authors +Copyright (c) 2006 Google Inc. http://code.google.com/p/google-diff-match-patch +Copyright (c) 2006 Google Inc. + +Apache-2.0 AND MIT + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fcontainernetworking/plugins v1.4.0 - Apache-2.0 AND NOASSERTION + + +Copyright 2014 CNI authors +Copyright 2015 CNI authors +Copyright 2016 CNI authors +Copyright 2017 CNI authors +Copyright 2018 CNI authors +Copyright 2019 CNI authors +Copyright 2020 CNI authors +Copyright 2021 CNI authors +Copyright 2022 CNI authors +Copyright 2022 Arista Networks +Copyright 2015-2017 CNI authors +Copyright 2015-2018 CNI authors +Copyright 2016-2018 CNI authors +Copyright 2017-2018 CNI authors +Copyright 2017-2020 CNI authors +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + +Apache-2.0 AND NOASSERTION + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.universe.tf/metallb v0.11.0 - Apache-2.0 AND NOASSERTION + + +(c) Zeno Rocha +Copyright (c) 2014 Grav +Copyright Dave Gandy 2016 +Copyright 2017 Google Inc. +Copyright (c) 2016 MATHIEU CORNIC +Copyright (c) 2017 Valere JEANTET +Copyright 2021 The MetalLB Authors +Copyright (c) 2016 Oliver Nightingale +Copyright 2016 The Kubernetes Authors +Copyright (c) The MetalLB Contributors +(c) OpenJS Foundation and other contributors +Copyright (c) 2010-2011 by tyPoland Lukasz Dziedzic +Copyright 2015, Noel Raoul Bossart (http://www.noelboss.com) +Copyright (c) 2021 The Linux Foundation (r). The Linux Foundation +Copyright (c) 2004, 2006 The Linux Foundation and its contributors +(c) 2010-2011 by tyPoland Lukasz Dziedzic (http://www.typoland.com/) +Copyright (c) 2014 Simon Steinberger / Pixabay GitHub https://github.com/Pixabay/JavaScript-autoComplete + +Apache-2.0 AND NOASSERTION + +--------------------------------------------------------- + +--------------------------------------------------------- + +cheerio-select 2.1.0 - BSD-2-Clause +https://github.com/cheeriojs/cheerio-select#readme + +Copyright (c) Felix Bohm + Copyright (c) Felix Böhm All rights reserved. @@ -38348,17 +38348,17 @@ Redistributions in binary form must reproduce the above copyright notice, this l THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -configstore 6.0.0 - BSD-2-Clause -https://github.com/yeoman/configstore#readme - -Copyright (c) Google - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +configstore 6.0.0 - BSD-2-Clause +https://github.com/yeoman/configstore#readme + +Copyright (c) Google + BSD 2-Clause License Copyright (c) Google @@ -38384,18 +38384,18 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -css-select 4.3.0 - BSD-2-Clause -https://github.com/fb55/css-select#readme - -Copyright (c) Felix Bohm -(c) 2007-2020 Steven Levithan - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +css-select 4.3.0 - BSD-2-Clause +https://github.com/fb55/css-select#readme + +Copyright (c) Felix Bohm +(c) 2007-2020 Steven Levithan + Copyright (c) Felix Böhm All rights reserved. @@ -38407,18 +38407,18 @@ Redistributions in binary form must reproduce the above copyright notice, this l THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -css-select 5.1.0 - BSD-2-Clause -https://github.com/fb55/css-select#readme - -Copyright (c) Felix Bohm -(c) 2007-2020 Steven Levithan - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +css-select 5.1.0 - BSD-2-Clause +https://github.com/fb55/css-select#readme + +Copyright (c) Felix Bohm +(c) 2007-2020 Steven Levithan + Copyright (c) Felix Böhm All rights reserved. @@ -38430,17 +38430,17 @@ Redistributions in binary form must reproduce the above copyright notice, this l THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -css-what 6.1.0 - BSD-2-Clause -https://github.com/fb55/css-what#readme - -Copyright (c) Felix Bohm - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +css-what 6.1.0 - BSD-2-Clause +https://github.com/fb55/css-what#readme + +Copyright (c) Felix Bohm + Copyright (c) Felix Böhm All rights reserved. @@ -38452,18 +38452,18 @@ Redistributions in binary form must reproduce the above copyright notice, this l THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -default-gateway 6.0.3 - BSD-2-Clause -https://github.com/silverwind/default-gateway#readme - -Copyright (c) silverwind -(c) silverwind (https://github.com/silverwind) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +default-gateway 6.0.3 - BSD-2-Clause +https://github.com/silverwind/default-gateway#readme + +Copyright (c) silverwind +(c) silverwind (https://github.com/silverwind) + Copyright (c) silverwind All rights reserved. @@ -38486,17 +38486,17 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -domelementtype 2.3.0 - BSD-2-Clause -https://github.com/fb55/domelementtype#readme - -Copyright (c) Felix Bohm - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +domelementtype 2.3.0 - BSD-2-Clause +https://github.com/fb55/domelementtype#readme + +Copyright (c) Felix Bohm + Copyright (c) Felix Böhm All rights reserved. @@ -38508,17 +38508,17 @@ Redistributions in binary form must reproduce the above copyright notice, this l THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -domhandler 5.0.3 - BSD-2-Clause -https://github.com/fb55/domhandler#readme - -Copyright (c) Felix Bohm - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +domhandler 5.0.3 - BSD-2-Clause +https://github.com/fb55/domhandler#readme + +Copyright (c) Felix Bohm + Copyright (c) Felix Böhm All rights reserved. @@ -38530,17 +38530,17 @@ Redistributions in binary form must reproduce the above copyright notice, this l THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -domutils 3.1.0 - BSD-2-Clause -https://github.com/fb55/domutils#readme - -Copyright (c) Felix Bohm - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +domutils 3.1.0 - BSD-2-Clause +https://github.com/fb55/domutils#readme + +Copyright (c) Felix Bohm + Copyright (c) Felix Böhm All rights reserved. @@ -38552,17 +38552,17 @@ Redistributions in binary form must reproduce the above copyright notice, this l THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -entities 4.5.0 - BSD-2-Clause -https://github.com/fb55/entities#readme - -Copyright (c) Felix Bohm - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +entities 4.5.0 - BSD-2-Clause +https://github.com/fb55/entities#readme + +Copyright (c) Felix Bohm + Copyright (c) Felix Böhm All rights reserved. @@ -38574,22 +38574,22 @@ Redistributions in binary form must reproduce the above copyright notice, this l THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -eslint-scope 5.1.1 - BSD-2-Clause -http://github.com/eslint/eslint-scope - -Copyright (c) 2015 Yusuke Suzuki -Copyright (c) 2013 Alex Seville -Copyright (c) 2014 Thiago de Arruda -Copyright (c) 2012-2014 Yusuke Suzuki -Copyright JS Foundation and other contributors, https://js.foundation -Copyright (c) 2012-2013 Yusuke Suzuki (twitter Constellation) and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +eslint-scope 5.1.1 - BSD-2-Clause +http://github.com/eslint/eslint-scope + +Copyright (c) 2015 Yusuke Suzuki +Copyright (c) 2013 Alex Seville +Copyright (c) 2014 Thiago de Arruda +Copyright (c) 2012-2014 Yusuke Suzuki +Copyright JS Foundation and other contributors, https://js.foundation +Copyright (c) 2012-2013 Yusuke Suzuki (twitter Constellation) and other contributors + Copyright JS Foundation and other contributors, https://js.foundation Copyright (C) 2012-2013 Yusuke Suzuki (twitter: @Constellation) and other contributors. @@ -38612,17 +38612,17 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -esprima 4.0.1 - BSD-2-Clause -http://esprima.org/ - -Copyright JS Foundation and other contributors, https://js.foundation - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +esprima 4.0.1 - BSD-2-Clause +http://esprima.org/ + +Copyright JS Foundation and other contributors, https://js.foundation + Copyright JS Foundation and other contributors, https://js.foundation/ Redistribution and use in source and binary forms, with or without @@ -38644,18 +38644,18 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -esrecurse 4.3.0 - BSD-2-Clause -https://github.com/estools/esrecurse - -Copyright (c) 2014 Yusuke Suzuki -Copyright (c) 2014 Yusuke Suzuki (https://github.com/Constellation) (twitter Constellation (https://twitter.com/Constellation)) and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +esrecurse 4.3.0 - BSD-2-Clause +https://github.com/estools/esrecurse + +Copyright (c) 2014 Yusuke Suzuki +Copyright (c) 2014 Yusuke Suzuki (https://github.com/Constellation) (twitter Constellation (https://twitter.com/Constellation)) and other contributors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38664,20 +38664,20 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -estraverse 4.3.0 - BSD-2-Clause -https://github.com/estools/estraverse - -Copyright (c) 2014 Yusuke Suzuki -Copyright (c) 2012 Ariya Hidayat -Copyright (c) 2012-2013 Yusuke Suzuki -Copyright (c) 2012-2016 Yusuke Suzuki (http://github.com/Constellation) (twitter Constellation (http://twitter.com/Constellation)) and other contributors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +estraverse 4.3.0 - BSD-2-Clause +https://github.com/estools/estraverse + +Copyright (c) 2014 Yusuke Suzuki +Copyright (c) 2012 Ariya Hidayat +Copyright (c) 2012-2013 Yusuke Suzuki +Copyright (c) 2012-2016 Yusuke Suzuki (http://github.com/Constellation) (twitter Constellation (http://twitter.com/Constellation)) and other contributors + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38697,20 +38697,20 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -estraverse 5.3.0 - BSD-2-Clause -https://github.com/estools/estraverse - -Copyright (c) 2014 Yusuke Suzuki -Copyright (c) 2012 Ariya Hidayat -Copyright (c) 2012-2013 Yusuke Suzuki -Copyright (c) 2012-2016 Yusuke Suzuki (http://github.com/Constellation) (twitter Constellation (http://twitter.com/Constellation)) and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +estraverse 5.3.0 - BSD-2-Clause +https://github.com/estools/estraverse + +Copyright (c) 2014 Yusuke Suzuki +Copyright (c) 2012 Ariya Hidayat +Copyright (c) 2012-2013 Yusuke Suzuki +Copyright (c) 2012-2016 Yusuke Suzuki (http://github.com/Constellation) (twitter Constellation (http://twitter.com/Constellation)) and other contributors + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38730,20 +38730,20 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -esutils 2.0.3 - BSD-2-Clause -https://github.com/estools/esutils - -Copyright (c) 2014 Ivan Nikulin -Copyright (c) 2013 Yusuke Suzuki -Copyright (c) 2013-2014 Yusuke Suzuki -Copyright (c) 2013 Yusuke Suzuki (http://github.com/Constellation) (twitter Constellation (http://twitter.com/Constellation)) and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +esutils 2.0.3 - BSD-2-Clause +https://github.com/estools/esutils + +Copyright (c) 2014 Ivan Nikulin +Copyright (c) 2013 Yusuke Suzuki +Copyright (c) 2013-2014 Yusuke Suzuki +Copyright (c) 2013 Yusuke Suzuki (http://github.com/Constellation) (twitter Constellation (http://twitter.com/Constellation)) and other contributors + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38763,18 +38763,18 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcilium/checkmate v1.0.3 - BSD-2-Clause - - -Copyright (c) 2012 The Go Authors -Copyright (c) 2010-2013 Gustavo Niemeyer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcilium/checkmate v1.0.3 - BSD-2-Clause + + +Copyright (c) 2012 The Go Authors +Copyright (c) 2010-2013 Gustavo Niemeyer + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38783,20 +38783,20 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdnaeon/go-vcr v1.2.0 - BSD-2-Clause - - -Copyright (c) 2016 David Jack -Copyright (c) 2015 Marin Atanasov Nikolov -Copyright (c) 2016 Marin Atanasov Nikolov -Copyright (c) 2015-2016 Marin Atanasov Nikolov - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdnaeon/go-vcr v1.2.0 - BSD-2-Clause + + +Copyright (c) 2016 David Jack +Copyright (c) 2015 Marin Atanasov Nikolov +Copyright (c) 2016 Marin Atanasov Nikolov +Copyright (c) 2015-2016 Marin Atanasov Nikolov + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38805,17 +38805,17 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgodbus%2Fdbus/v5 v5.1.0 - BSD-2-Clause - - -Copyright (c) 2013, Georg Reinke , Google - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgodbus%2Fdbus/v5 v5.1.0 - BSD-2-Clause + + +Copyright (c) 2013, Georg Reinke , Google + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38824,18 +38824,18 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgorilla/handlers v1.5.1 - BSD-2-Clause - - -Copyright 2013 The Gorilla Authors -Copyright (c) 2013 The Gorilla Handlers Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgorilla/handlers v1.5.1 - BSD-2-Clause + + +Copyright 2013 The Gorilla Authors +Copyright (c) 2013 The Gorilla Handlers Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38844,24 +38844,24 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgorilla/websocket v1.5.0 - BSD-2-Clause - - -Copyright 2013 The Gorilla WebSocket Authors -Copyright 2014 The Gorilla WebSocket Authors -Copyright 2015 The Gorilla WebSocket Authors -Copyright 2016 The Gorilla WebSocket Authors -Copyright 2017 The Gorilla WebSocket Authors -Copyright 2019 The Gorilla WebSocket Authors -Copyright (c) 2013 The Gorilla WebSocket Authors -Copyright (c) 2008-2009 Bjoern Hoehrmann - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgorilla/websocket v1.5.0 - BSD-2-Clause + + +Copyright 2013 The Gorilla WebSocket Authors +Copyright 2014 The Gorilla WebSocket Authors +Copyright 2015 The Gorilla WebSocket Authors +Copyright 2016 The Gorilla WebSocket Authors +Copyright 2017 The Gorilla WebSocket Authors +Copyright 2019 The Gorilla WebSocket Authors +Copyright (c) 2013 The Gorilla WebSocket Authors +Copyright (c) 2008-2009 Bjoern Hoehrmann + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38870,17 +38870,17 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkarrick/godirwalk v1.16.1 - BSD-2-Clause - - -Copyright (c) 2017, Karrick McDermott - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkarrick/godirwalk v1.16.1 - BSD-2-Clause + + +Copyright (c) 2017, Karrick McDermott + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38889,20 +38889,20 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmagiconair/properties v1.8.7 - BSD-2-Clause - - -Copyright 2011 The Go Authors -Copyright 2013-2014 Frank Schroeder -Copyright 2013-2022 Frank Schroeder -Copyright (c) 2013-2020, Frank Schroeder - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmagiconair/properties v1.8.7 - BSD-2-Clause + + +Copyright 2011 The Go Authors +Copyright 2013-2014 Frank Schroeder +Copyright 2013-2022 Frank Schroeder +Copyright (c) 2013-2020, Frank Schroeder + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38911,19 +38911,19 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmikioh/ipaddr v0.0.0-20190404000644-d465c8ab6721 - BSD-2-Clause - - -Copyright 2013 Mikio Hara -Copyright 2015 Mikio Hara -Copyright (c) 2014, Mikio Hara - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmikioh/ipaddr v0.0.0-20190404000644-d465c8ab6721 - BSD-2-Clause + + +Copyright 2013 Mikio Hara +Copyright 2015 Mikio Hara +Copyright (c) 2014, Mikio Hara + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38932,17 +38932,17 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fpkg/browser v0.0.0-20240102092130-5ac0b6a4141c - BSD-2-Clause - - -Copyright (c) 2014, Dave Cheney - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fpkg/browser v0.0.0-20240102092130-5ac0b6a4141c - BSD-2-Clause + + +Copyright (c) 2014, Dave Cheney + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38951,17 +38951,17 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fpkg/errors v0.9.1 - BSD-2-Clause - - -Copyright (c) 2015, Dave Cheney - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fpkg/errors v0.9.1 - BSD-2-Clause + + +Copyright (c) 2015, Dave Cheney + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38970,17 +38970,17 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fpkg/sftp v1.13.6 - BSD-2-Clause - - -Copyright (c) 2013, Dave Cheney - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fpkg/sftp v1.13.6 - BSD-2-Clause + + +Copyright (c) 2013, Dave Cheney + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38989,19 +38989,19 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Frussross%2Fblackfriday/v2 v2.1.0 - BSD-2-Clause - - -(c) 2004 Foo Corporation -Copyright (c) 2011 Russ Ross -Copyright (c) 2011 Russ Ross - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Frussross%2Fblackfriday/v2 v2.1.0 - BSD-2-Clause + + +(c) 2004 Foo Corporation +Copyright (c) 2011 Russ Ross +Copyright (c) 2011 Russ Ross + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39010,19 +39010,19 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Frussross/blackfriday v1.6.0 - BSD-2-Clause - - -(c) 2004 Foo Corporation -Copyright (c) 2011 Russ Ross -Copyright (c) 2011 Russ Ross - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Frussross/blackfriday v1.6.0 - BSD-2-Clause + + +(c) 2004 Foo Corporation +Copyright (c) 2011 Russ Ross +Copyright (c) 2011 Russ Ross + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39031,18 +39031,18 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fseccomp/libseccomp-golang v0.10.0 - BSD-2-Clause - - -Copyright (c) 2015 Paul Moore -Copyright (c) 2015 Matthew Heon - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fseccomp/libseccomp-golang v0.10.0 - BSD-2-Clause + + +Copyright (c) 2015 Paul Moore +Copyright (c) 2015 Matthew Heon + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39051,18 +39051,18 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fsyndtr/gocapability v0.0.0-20200815063812-42c35b437635 - BSD-2-Clause - - -Copyright 2013 Suryandaru Triandana -Copyright (c) 2013, Suryandaru Triandana - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fsyndtr/gocapability v0.0.0-20200815063812-42c35b437635 - BSD-2-Clause + + +Copyright 2013 Suryandaru Triandana +Copyright (c) 2013, Suryandaru Triandana + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39071,17 +39071,17 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fyvasiyarov/gorelic v0.0.0-20141212073537-a9bba5b9ab50 - BSD-2-Clause - - -Copyright (c) 2013 Yuriy Vasiyarov - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fyvasiyarov/gorelic v0.0.0-20141212073537-a9bba5b9ab50 - BSD-2-Clause + + +Copyright (c) 2013 Yuriy Vasiyarov + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39090,17 +39090,17 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fyvasiyarov/newrelic_platform_go v0.0.0-20140908184405-b21fdbd4370f - BSD-2-Clause - - -Copyright (c) 2013 Yuriy Vasiyarov - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fyvasiyarov/newrelic_platform_go v0.0.0-20140908184405-b21fdbd4370f - BSD-2-Clause + + +Copyright (c) 2013 Yuriy Vasiyarov + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39109,18 +39109,18 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gitlab.com%2Fgolang-commonmark/puny v0.0.0-20191124015043-9f83538fa04f - BSD-2-Clause - - -Copyright 2015 The Authors -Copyright (c) 2015, The Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gitlab.com%2Fgolang-commonmark/puny v0.0.0-20191124015043-9f83538fa04f - BSD-2-Clause + + +Copyright 2015 The Authors +Copyright (c) 2015, The Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39129,17 +39129,17 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -glob-to-regexp 0.4.1 - BSD-2-Clause -https://github.com/fitzgen/glob-to-regexp#readme - -Copyright (c) 2013, Nick Fitzgerald - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +glob-to-regexp 0.4.1 - BSD-2-Clause +https://github.com/fitzgen/glob-to-regexp#readme + +Copyright (c) 2013, Nick Fitzgerald + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39148,18 +39148,18 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c - BSD-2-Clause - - -Copyright (c) 2012 The Go Authors -Copyright (c) 2010-2013 Gustavo Niemeyer - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c - BSD-2-Clause + + +Copyright (c) 2012 The Go Authors +Copyright (c) 2010-2013 Gustavo Niemeyer + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39168,17 +39168,17 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -http-cache-semantics 4.1.1 - BSD-2-Clause -https://github.com/kornelski/http-cache-semantics#readme - -Copyright 2016-2018 Kornel Lesinski - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +http-cache-semantics 4.1.1 - BSD-2-Clause +https://github.com/kornelski/http-cache-semantics#readme + +Copyright 2016-2018 Kornel Lesinski + Copyright 2016-2018 Kornel Lesiński Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39188,17 +39188,17 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -nth-check 2.1.1 - BSD-2-Clause -https://github.com/fb55/nth-check - -Copyright (c) Felix Bohm - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +nth-check 2.1.1 - BSD-2-Clause +https://github.com/fb55/nth-check + +Copyright (c) Felix Bohm + Copyright (c) Felix Böhm All rights reserved. @@ -39210,17 +39210,17 @@ Redistributions in binary form must reproduce the above copyright notice, this l THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -regjsparser 0.9.1 - BSD-2-Clause -https://github.com/jviereck/regjsparser - -Copyright (c) Julian Viereck and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +regjsparser 0.9.1 - BSD-2-Clause +https://github.com/jviereck/regjsparser + +Copyright (c) Julian Viereck and Contributors + Copyright (c) Julian Viereck and Contributors, All Rights Reserved. Redistribution and use in source and binary forms, with or without @@ -39242,18 +39242,18 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -stringify-object 3.3.0 - BSD-2-Clause -https://github.com/yeoman/stringify-object#readme - -(c) Yeoman team -Copyright (c) 2015, Yeoman team - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +stringify-object 3.3.0 - BSD-2-Clause +https://github.com/yeoman/stringify-object#readme + +(c) Yeoman team +Copyright (c) 2015, Yeoman team + Copyright (c) 2015, Yeoman team All rights reserved. @@ -39276,18 +39276,18 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -terser 5.26.0 - BSD-2-Clause -https://terser.org/ - -Copyright 2012 (c) Mihai Bazon -Copyright 2012-2018 (c) Mihai Bazon - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +terser 5.26.0 - BSD-2-Clause +https://terser.org/ + +Copyright 2012 (c) Mihai Bazon +Copyright 2012-2018 (c) Mihai Bazon + Copyright 2012-2018 (c) Mihai Bazon Redistribution and use in source and binary forms, with or without @@ -39315,16 +39315,16 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -update-notifier 6.0.2 - BSD-2-Clause -https://github.com/yeoman/update-notifier#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +update-notifier 6.0.2 - BSD-2-Clause +https://github.com/yeoman/update-notifier#readme + + Copyright Google Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39334,18 +39334,18 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -uri-js 4.4.1 - BSD-2-Clause -https://github.com/garycourt/uri-js - -(c) 2011 Gary Court -Copyright 2011 Gary Court - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +uri-js 4.4.1 - BSD-2-Clause +https://github.com/garycourt/uri-js + +(c) 2011 Gary Court +Copyright 2011 Gary Court + Copyright 2011 Gary Court. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39357,18 +39357,18 @@ Redistribution and use in source and binary forms, with or without modification, THIS SOFTWARE IS PROVIDED BY GARY COURT "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARY COURT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of Gary Court. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -rc 1.2.8 - BSD-2-Clause OR (MIT OR Apache-2.0) -https://github.com/dominictarr/rc#readme - -Copyright (c) 2011 Dominic Tarr -Copyright (c) 2013, Dominic Tarr - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +rc 1.2.8 - BSD-2-Clause OR (MIT OR Apache-2.0) +https://github.com/dominictarr/rc#readme + +Copyright (c) 2011 Dominic Tarr +Copyright (c) 2013, Dominic Tarr + The MIT License Copyright (c) 2011 Dominic Tarr @@ -39393,42 +39393,42 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Frcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 - BSD-2-Clause-Views - - -Copyright 2012 Richard Crowley - -BSD-2-Clause-Views - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fyvasiyarov/go-metrics v0.0.0-20140926110328-57bccd1ccd43 - BSD-2-Clause-Views - - -Copyright 2012 Richard Crowley - -BSD-2-Clause-Views - ---------------------------------------------------------- - ---------------------------------------------------------- - -@hapi/hoek 9.3.0 - BSD-3-Clause -https://github.com/hapijs/hoek#readme - -Copyright (c) 2011, Yahoo Inc. -Copyright (c) 2011-2014, Walmart -copyright (c) 2013 Jake Luer, jake@alogicalparadox.com -Copyright (c) 2011-2020, Sideway Inc, and project contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Frcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 - BSD-2-Clause-Views + + +Copyright 2012 Richard Crowley + +BSD-2-Clause-Views + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fyvasiyarov/go-metrics v0.0.0-20140926110328-57bccd1ccd43 - BSD-2-Clause-Views + + +Copyright 2012 Richard Crowley + +BSD-2-Clause-Views + +--------------------------------------------------------- + +--------------------------------------------------------- + +@hapi/hoek 9.3.0 - BSD-3-Clause +https://github.com/hapijs/hoek#readme + +Copyright (c) 2011, Yahoo Inc. +Copyright (c) 2011-2014, Walmart +copyright (c) 2013 Jake Luer, jake@alogicalparadox.com +Copyright (c) 2011-2020, Sideway Inc, and project contributors + Copyright (c) 2011-2020, Sideway Inc, and project contributors Copyright (c) 2011-2014, Walmart Copyright (c) 2011, Yahoo Inc. @@ -39441,18 +39441,18 @@ Redistribution and use in source and binary forms, with or without modification, * The names of any contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS OFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@hapi/topo 5.1.0 - BSD-3-Clause -https://github.com/hapijs/topo#readme - -Copyright (c) 2012-2014, Walmart -Copyright (c) 2012-2020, Sideway Inc, and project contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@hapi/topo 5.1.0 - BSD-3-Clause +https://github.com/hapijs/topo#readme + +Copyright (c) 2012-2014, Walmart +Copyright (c) 2012-2020, Sideway Inc, and project contributors + Copyright (c) 2012-2020, Sideway Inc, and project contributors Copyright (c) 2012-2014, Walmart. All rights reserved. @@ -39463,19 +39463,19 @@ Redistribution and use in source and binary forms, with or without modification, * The names of any contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS OFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@sideway/address 4.1.4 - BSD-3-Clause -https://github.com/sideway/address#readme - -Copyright (c) 2017-2019 Justin Ridgewell -Copyright (c) 2008-2009 Bjoern Hoehrmann -Copyright (c) 2019-2020, Sideway, Inc. and Project contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@sideway/address 4.1.4 - BSD-3-Clause +https://github.com/sideway/address#readme + +Copyright (c) 2017-2019 Justin Ridgewell +Copyright (c) 2008-2009 Bjoern Hoehrmann +Copyright (c) 2019-2020, Sideway, Inc. and Project contributors + Copyright (c) 2019-2020, Sideway, Inc. and Project contributors All rights reserved. @@ -39485,18 +39485,18 @@ Redistribution and use in source and binary forms, with or without modification, * The names of any contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@sideway/formula 3.0.1 - BSD-3-Clause -https://github.com/sideway/formula#readme - -copyright 2012-2018 Alexander Schenkel -Copyright (c) 2019-2020, Sideway. Inc, and project contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@sideway/formula 3.0.1 - BSD-3-Clause +https://github.com/sideway/formula#readme + +copyright 2012-2018 Alexander Schenkel +Copyright (c) 2019-2020, Sideway. Inc, and project contributors + Copyright (c) 2019-2020, Sideway. Inc, and project contributors All rights reserved. @@ -39506,17 +39506,17 @@ Redistribution and use in source and binary forms, with or without modification, * The names of any contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@sideway/pinpoint 2.0.0 - BSD-3-Clause -https://github.com/sideway/pinpoint#readme - -Copyright (c) 2019-2020, Sideway. Inc, and project contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@sideway/pinpoint 2.0.0 - BSD-3-Clause +https://github.com/sideway/pinpoint#readme + +Copyright (c) 2019-2020, Sideway. Inc, and project contributors + Copyright (c) 2019-2020, Sideway. Inc, and project contributors All rights reserved. @@ -39527,17 +39527,17 @@ Redistribution and use in source and binary forms, with or without modification, * The names of any contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS OFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@xtuc/ieee754 1.2.0 - BSD-3-Clause -https://github.com/feross/ieee754#readme - -Copyright (c) 2008, Fair Oaks Labs, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@xtuc/ieee754 1.2.0 - BSD-3-Clause +https://github.com/feross/ieee754#readme + +Copyright (c) 2008, Fair Oaks Labs, Inc. + Copyright (c) 2008, Fair Oaks Labs, Inc. All rights reserved. @@ -39566,21 +39566,21 @@ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -dario.cat/mergo v1.0.0 - BSD-3-Clause - - -Copyright 2013 Dario Castane -Copyright 2014 Dario Castane -Copyright 2009 The Go Authors -Copyright (c) 2013 Dario Castane -Copyright (c) 2012 The Go Authors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +dario.cat/mergo v1.0.0 - BSD-3-Clause + + +Copyright 2013 Dario Castane +Copyright 2014 Dario Castane +Copyright 2009 The Go Authors +Copyright (c) 2013 Dario Castane +Copyright (c) 2012 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39591,58 +39591,58 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -filesize 8.0.7 - BSD-3-Clause -https://filesizejs.com/ - -Copyright (c) 2022 Jason Mulligan -Copyright (c) 2022, Jason Mulligan -copyright 2022 Jason Mulligan - -Copyright (c) 2022, Jason Mulligan -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -* Neither the name of filesize nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - - ---------------------------------------------------------- - ---------------------------------------------------------- - -flat 5.0.2 - BSD-3-Clause -https://github.com/hughsk/flat - -Copyright (c) 2014, Hugh Kennedy - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +filesize 8.0.7 - BSD-3-Clause +https://filesizejs.com/ + +Copyright (c) 2022 Jason Mulligan +Copyright (c) 2022, Jason Mulligan +copyright 2022 Jason Mulligan + +Copyright (c) 2022, Jason Mulligan +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of filesize nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + +--------------------------------------------------------- + +--------------------------------------------------------- + +flat 5.0.2 - BSD-3-Clause +https://github.com/hughsk/flat + +Copyright (c) 2014, Hugh Kennedy + Copyright (c) 2014, Hugh Kennedy All rights reserved. @@ -39655,19 +39655,19 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Falecthomas/template v0.0.0-20190718012654-fb15b899a751 - BSD-3-Clause - - -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright (c) 2012 The Go Authors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Falecthomas/template v0.0.0-20190718012654-fb15b899a751 - BSD-3-Clause + + +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright (c) 2012 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39678,52 +39678,52 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fchai2010/gettext-go v1.0.2 - BSD-3-Clause - - -Copyright 2013 -Copyright 2019 -(c) nam 1997-2002 -(c) nam 2001-2004 -(c) nam 2005 To chuc Phan -(c) nam 2000, Ximian, Inc. -Copyright 2013 ChaiShushan -Copyright 2020 ChaiShushan -(c) nam 2000, Helix Code, Inc. -(c) nam 2002, 2003 Roland Stigge -Copyright (c) 2000, Ximian, Inc. -(c) nam 2002-2003 Roman Festchook -Copyright (c) 2003 Yoyodyne, Inc. -Copyright (c) 2005 Yoyodyne, Inc. -Copyright 2002, 2003 Roland Stigge -Copyright (c) 2001 - Cornelis Frank -(c) nam 1988-1993 Miguel Santana Ban -Copyright (c) 2000, Helix Code, Inc. -Copyright (c) 2006 Gnome i18n Project -Copyright (c) 1988-1993 Miguel Santana -Copyright (c) 2002, 2003 Roland Stigge -Copyright (c) 2002-2003 Roman Festchook -Copyright (c) 1997-2002 msgstr Ban quyen -Copyright (c) 2001-2004 msgstr Ban quyen -(c) 2005 Frederic Ruaudel -(c) nam 1999 Free Software Foundation, Inc. -Copyright (c) Free Software Foundation, Inc. -Copyright 2005 Free Software Foundation, Inc. -(c) nam 1995-2000 Akim Demaille, Miguel Santana -(c) nam 2005 Frederic Ruaudel -Copyright (c) 1999 Free Software Foundation, Inc. -Copyright (c) 2000 Free Software Foundation, Inc. -Copyright (c) 1998-2002 The Free Software Foundation -Copyright (c) 1995-2000 Akim Demaille, Miguel Santana -Copyright (c) 1997-2002 Copyright (c) 1999 Free Software Foundation, Inc. -Copyright (c) 2001-2004 Copyright 2005 Free Software Foundation, Inc. Correcting dependencies... Corrupted - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fchai2010/gettext-go v1.0.2 - BSD-3-Clause + + +Copyright 2013 +Copyright 2019 +(c) nam 1997-2002 +(c) nam 2001-2004 +(c) nam 2005 To chuc Phan +(c) nam 2000, Ximian, Inc. +Copyright 2013 ChaiShushan +Copyright 2020 ChaiShushan +(c) nam 2000, Helix Code, Inc. +(c) nam 2002, 2003 Roland Stigge +Copyright (c) 2000, Ximian, Inc. +(c) nam 2002-2003 Roman Festchook +Copyright (c) 2003 Yoyodyne, Inc. +Copyright (c) 2005 Yoyodyne, Inc. +Copyright 2002, 2003 Roland Stigge +Copyright (c) 2001 - Cornelis Frank +(c) nam 1988-1993 Miguel Santana Ban +Copyright (c) 2000, Helix Code, Inc. +Copyright (c) 2006 Gnome i18n Project +Copyright (c) 1988-1993 Miguel Santana +Copyright (c) 2002, 2003 Roland Stigge +Copyright (c) 2002-2003 Roman Festchook +Copyright (c) 1997-2002 msgstr Ban quyen +Copyright (c) 2001-2004 msgstr Ban quyen +(c) 2005 Frederic Ruaudel +(c) nam 1999 Free Software Foundation, Inc. +Copyright (c) Free Software Foundation, Inc. +Copyright 2005 Free Software Foundation, Inc. +(c) nam 1995-2000 Akim Demaille, Miguel Santana +(c) nam 2005 Frederic Ruaudel +Copyright (c) 1999 Free Software Foundation, Inc. +Copyright (c) 2000 Free Software Foundation, Inc. +Copyright (c) 1998-2002 The Free Software Foundation +Copyright (c) 1995-2000 Akim Demaille, Miguel Santana +Copyright (c) 1997-2002 Copyright (c) 1999 Free Software Foundation, Inc. +Copyright (c) 2001-2004 Copyright 2005 Free Software Foundation, Inc. Correcting dependencies... Corrupted + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39734,18 +39734,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcirconus-labs/circonus-gometrics v2.3.1+incompatible - BSD-3-Clause - - -Copyright 2016 Circonus, Inc. -Copyright (c) 2016, Circonus, Inc. - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcirconus-labs/circonus-gometrics v2.3.1+incompatible - BSD-3-Clause + + +Copyright 2016 Circonus, Inc. +Copyright (c) 2016, Circonus, Inc. + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39756,18 +39756,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcirconus-labs/circonusllhist v0.1.3 - BSD-3-Clause - - -Copyright 2016, Circonus, Inc. -Copyright (c) 2016 Circonus, Inc. - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcirconus-labs/circonusllhist v0.1.3 - BSD-3-Clause + + +Copyright 2016, Circonus, Inc. +Copyright (c) 2016 Circonus, Inc. + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39778,18 +39778,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fcyphar/filepath-securejoin v0.2.4 - BSD-3-Clause - - -Copyright (c) 2017 SUSE LLC. -Copyright (c) 2014-2015 Docker Inc & Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fcyphar/filepath-securejoin v0.2.4 - BSD-3-Clause + + +Copyright (c) 2017 SUSE LLC. +Copyright (c) 2014-2015 Docker Inc & Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39800,17 +39800,17 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdata-dog/go-sqlmock v1.5.2 - BSD-3-Clause - - -Copyright (c) 2013-2019, DATA-DOG team - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdata-dog/go-sqlmock v1.5.2 - BSD-3-Clause + + +Copyright (c) 2013-2019, DATA-DOG team + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39821,19 +39821,19 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdenisenkom/go-mssqldb v0.9.0 - BSD-3-Clause - - -Copyright 2011 The Go Authors -Copyright 2017 The Go Authors -Copyright (c) 2012 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdenisenkom/go-mssqldb v0.9.0 - BSD-3-Clause + + +Copyright 2011 The Go Authors +Copyright 2017 The Go Authors +Copyright (c) 2012 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39844,17 +39844,17 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fevanphx%2Fjson-patch/v5 v5.7.0 - BSD-3-Clause - - -Copyright (c) 2014, Evan Phoenix - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fevanphx%2Fjson-patch/v5 v5.7.0 - BSD-3-Clause + + +Copyright (c) 2014, Evan Phoenix + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39865,17 +39865,17 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fevanphx/json-patch v5.7.0+incompatible - BSD-3-Clause - - -Copyright (c) 2014, Evan Phoenix - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fevanphx/json-patch v5.7.0+incompatible - BSD-3-Clause + + +Copyright (c) 2014, Evan Phoenix + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39886,18 +39886,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2ffsnotify/fsnotify v1.7.0 - BSD-3-Clause - - -Copyright (c) fsnotify Authors -Copyright (c) 2012 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2ffsnotify/fsnotify v1.7.0 - BSD-3-Clause + + +Copyright (c) fsnotify Authors +Copyright (c) 2012 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39908,21 +39908,21 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgofrs/flock v0.8.1 - BSD-3-Clause - - -Copyright 2018 The Gofrs -Copyright 2015 Tim Heckman -Copyright 2019 Tim Heckman -Copyright 2018 The Go Authors -Copyright (c) 2015-2020, Tim Heckman - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgofrs/flock v0.8.1 - BSD-3-Clause + + +Copyright 2018 The Gofrs +Copyright 2015 Tim Heckman +Copyright 2019 Tim Heckman +Copyright 2018 The Go Authors +Copyright (c) 2015-2020, Tim Heckman + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39933,34 +39933,34 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgogo/protobuf v1.3.2 - BSD-3-Clause - - -Copyright 2008 Google Inc. -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2013 The Go Authors -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright (c) 2013, The GoGo Authors -Copyright (c) 2015, The GoGo Authors -Copyright (c) 2016, The GoGo Authors -Copyright (c) 2017, The GoGo Authors -Copyright (c) 2018, The GoGo Authors -Copyright (c) 2019, The GoGo Authors -Copyright 2010 The Go Authors. https://github.com/golang/protobuf - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgogo/protobuf v1.3.2 - BSD-3-Clause + + +Copyright 2008 Google Inc. +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2013 The Go Authors +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright (c) 2013, The GoGo Authors +Copyright (c) 2015, The GoGo Authors +Copyright (c) 2016, The GoGo Authors +Copyright (c) 2017, The GoGo Authors +Copyright (c) 2018, The GoGo Authors +Copyright (c) 2019, The GoGo Authors +Copyright 2010 The Go Authors. https://github.com/golang/protobuf + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39971,25 +39971,25 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgolang/protobuf v1.5.4 - BSD-3-Clause - - -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2020 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgolang/protobuf v1.5.4 - BSD-3-Clause + + +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2020 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40000,21 +40000,21 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgolang/snappy v0.0.4 - BSD-3-Clause - - -Copyright 2016 The Go Authors -Copyright 2020 The Go Authors -Copyright 2011 The Snappy-Go Authors -Copyright 2016 The Snappy-Go Authors -Copyright (c) 2011 The Snappy-Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgolang/snappy v0.0.4 - BSD-3-Clause + + +Copyright 2016 The Go Authors +Copyright 2020 The Go Authors +Copyright 2011 The Snappy-Go Authors +Copyright 2016 The Snappy-Go Authors +Copyright (c) 2011 The Snappy-Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40025,21 +40025,21 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle/go-cmp v0.6.0 - BSD-3-Clause - - -Copyright 2017, The Go Authors -Copyright 2018, The Go Authors -Copyright 2019, The Go Authors -Copyright 2020, The Go Authors -Copyright (c) 2017 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle/go-cmp v0.6.0 - BSD-3-Clause + + +Copyright 2017, The Go Authors +Copyright 2018, The Go Authors +Copyright 2019, The Go Authors +Copyright 2020, The Go Authors +Copyright (c) 2017 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40050,41 +40050,41 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle/gopacket v1.1.19 - BSD-3-Clause - - -Copyright 2012 Google, Inc. -Copyright 2013 Google, Inc. -Copyright 2014 Google, Inc. -Copyright 2015 Google, Inc. -Copyright 2016 Google, Inc. -Copyright 2017 Google, Inc. -Copyright 2018 Google, Inc. -Copyright 2012, Google, Inc. -Copyright 2014 Damjan Cvetko -Copyright 2014, Google, Inc. -Copyright 2016, Google, Inc. -Copyright 2017, Google, Inc. -Copyright 2018, Google, Inc. -Copyright 2009 The Go Authors -Copyright (c) 2012 Google, Inc. -Copyright 2018 GoPacket Authors -Copyright 2018 The GoPacket Authors -Copyright 2019 The GoPacket Authors -Copyright 2020 The GoPacket Authors -Copyright 2018, The GoPacket Authors -Copyright 2009-2011 Andreas Krennmair -Copyright 2012, 2018 GoPacket Authors -Copyright 2014, 2018 GoPacket Authors -Copyright (c) 2009-2011 Andreas Krennmair -Copyright (c) 1986-2010 by cisco Systems, Inc. - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle/gopacket v1.1.19 - BSD-3-Clause + + +Copyright 2012 Google, Inc. +Copyright 2013 Google, Inc. +Copyright 2014 Google, Inc. +Copyright 2015 Google, Inc. +Copyright 2016 Google, Inc. +Copyright 2017 Google, Inc. +Copyright 2018 Google, Inc. +Copyright 2012, Google, Inc. +Copyright 2014 Damjan Cvetko +Copyright 2014, Google, Inc. +Copyright 2016, Google, Inc. +Copyright 2017, Google, Inc. +Copyright 2018, Google, Inc. +Copyright 2009 The Go Authors +Copyright (c) 2012 Google, Inc. +Copyright 2018 GoPacket Authors +Copyright 2018 The GoPacket Authors +Copyright 2019 The GoPacket Authors +Copyright 2020 The GoPacket Authors +Copyright 2018, The GoPacket Authors +Copyright 2009-2011 Andreas Krennmair +Copyright 2012, 2018 GoPacket Authors +Copyright 2014, 2018 GoPacket Authors +Copyright (c) 2009-2011 Andreas Krennmair +Copyright (c) 1986-2010 by cisco Systems, Inc. + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40095,21 +40095,21 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgoogle/gops v0.3.27 - BSD-3-Clause - - -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2020 The Go Authors -Copyright 2022 The Go Authors -Copyright (c) 2016 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgoogle/gops v0.3.27 - BSD-3-Clause + + +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2020 The Go Authors +Copyright 2022 The Go Authors +Copyright (c) 2016 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40120,22 +40120,22 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgoogle/uuid v1.6.0 - BSD-3-Clause - - -Copyright 2016 Google Inc. -Copyright 2017 Google Inc. -Copyright 2018 Google Inc. -Copyright 2021 Google Inc. -Copyright 2023 Google Inc. -Copyright (c) 2009,2014 Google Inc. - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgoogle/uuid v1.6.0 - BSD-3-Clause + + +Copyright 2016 Google Inc. +Copyright 2017 Google Inc. +Copyright 2018 Google Inc. +Copyright 2021 Google Inc. +Copyright 2023 Google Inc. +Copyright (c) 2009,2014 Google Inc. + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40146,24 +40146,24 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgoogleapis%2fgax-go/v2 v2.12.0 - BSD-3-Clause - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2016, Google Inc. -Copyright 2018, Google Inc. -Copyright 2019, Google Inc. -Copyright 2021, Google Inc. -Copyright 2022, Google Inc. -Copyright 2023, Google Inc. - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgoogleapis%2fgax-go/v2 v2.12.0 - BSD-3-Clause + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2016, Google Inc. +Copyright 2018, Google Inc. +Copyright 2019, Google Inc. +Copyright 2021, Google Inc. +Copyright 2022, Google Inc. +Copyright 2023, Google Inc. + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40174,20 +40174,20 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgorilla/mux v1.8.1 - BSD-3-Clause - - -Copyright 2009 The Go Authors -Copyright 2011 Gorilla Authors -Copyright 2012 The Gorilla Authors -Copyright (c) 2023 The Gorilla Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgorilla/mux v1.8.1 - BSD-3-Clause + + +Copyright 2009 The Go Authors +Copyright 2011 Gorilla Authors +Copyright 2012 The Gorilla Authors +Copyright (c) 2023 The Gorilla Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40198,19 +40198,19 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgrpc-ecosystem%2Fgrpc-gateway/v2 v2.16.0 - BSD-3-Clause - - -Copyright 2009 The Go Authors -Copyright (c) 2015, Gengo, Inc. -Copyright 2010, 2019 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgrpc-ecosystem%2Fgrpc-gateway/v2 v2.16.0 - BSD-3-Clause + + +Copyright 2009 The Go Authors +Copyright (c) 2015, Gengo, Inc. +Copyright 2010, 2019 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40221,21 +40221,21 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgrpc-ecosystem/grpc-gateway v1.16.0 - BSD-3-Clause - - -Copyright 2017 Google Inc. -Copyright 2018 Google LLC. -Copyright 2010 The Go Authors -Copyright (c) 2015, Gengo, Inc. -Copyright (c) 2015, Google Inc. - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgrpc-ecosystem/grpc-gateway v1.16.0 - BSD-3-Clause + + +Copyright 2017 Google Inc. +Copyright 2018 Google LLC. +Copyright 2010 The Go Authors +Copyright (c) 2015, Gengo, Inc. +Copyright (c) 2015, Google Inc. + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40246,17 +40246,17 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-msgpack v0.5.5 - BSD-3-Clause - - -Copyright (c) 2012, 2013 Ugorji Nwoke - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-msgpack v0.5.5 - BSD-3-Clause + + +Copyright (c) 2012, 2013 Ugorji Nwoke + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40267,18 +40267,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639 - BSD-3-Clause - - -Copyright 2015 The Go Authors -Copyright (c) 2015 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639 - BSD-3-Clause + + +Copyright 2015 The Go Authors +Copyright (c) 2015 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40289,21 +40289,21 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fimdario/mergo v0.3.16 - BSD-3-Clause - - -Copyright 2013 Dario Castane -Copyright 2014 Dario Castane -Copyright 2009 The Go Authors -Copyright (c) 2013 Dario Castane -Copyright (c) 2012 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fimdario/mergo v0.3.16 - BSD-3-Clause + + +Copyright 2013 Dario Castane +Copyright 2014 Dario Castane +Copyright 2009 The Go Authors +Copyright (c) 2013 Dario Castane +Copyright (c) 2012 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40314,18 +40314,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjessevdk/go-flags v1.4.0 - BSD-3-Clause - - -Copyright 2012 Jesse van den Kieboom -Copyright (c) 2012 Jesse van den Kieboom - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjessevdk/go-flags v1.4.0 - BSD-3-Clause + + +Copyright 2012 Jesse van den Kieboom +Copyright (c) 2012 Jesse van den Kieboom + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40336,19 +40336,19 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjulienschmidt/httprouter v1.3.0 - BSD-3-Clause - - -Copyright 2009 The Go Authors -Copyright 2013 Julien Schmidt -Copyright (c) 2013, Julien Schmidt - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjulienschmidt/httprouter v1.3.0 - BSD-3-Clause + + +Copyright 2009 The Go Authors +Copyright 2013 Julien Schmidt +Copyright (c) 2013, Julien Schmidt + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40359,18 +40359,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkr/fs v0.1.0 - BSD-3-Clause - - -Copyright 2009 The Go Authors -Copyright (c) 2012 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkr/fs v0.1.0 - BSD-3-Clause + + +Copyright 2009 The Go Authors +Copyright (c) 2012 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40381,19 +40381,19 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fliggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de - BSD-3-Clause - - -Copyright 2009 The Go Authors -Copyright 2012 The Go Authors -Copyright (c) 2009 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fliggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de - BSD-3-Clause + + +Copyright 2009 The Go Authors +Copyright 2012 The Go Authors +Copyright (c) 2009 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40404,17 +40404,17 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 - BSD-3-Clause - - -Copyright (c) 2019, KADOTA, Kyohei - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 - BSD-3-Clause + + +Copyright (c) 2019, KADOTA, Kyohei + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40425,22 +40425,22 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmiekg/dns v1.1.41 - BSD-3-Clause - - -Copyright 2014 CloudFlare -Copyright 2011 Miek Gieben -Copyright 2009 The Go Authors -Copyright 2013 The Go Authors -copyright (c) 2011 Miek Gieben -Copyright (c) 2009 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmiekg/dns v1.1.41 - BSD-3-Clause + + +Copyright 2014 CloudFlare +Copyright 2011 Miek Gieben +Copyright 2009 The Go Authors +Copyright 2013 The Go Authors +copyright (c) 2011 Miek Gieben +Copyright (c) 2009 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40451,19 +40451,19 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmiekg/pkcs11 v1.1.1 - BSD-3-Clause - - -Copyright 2013 Miek Gieben -Copyright (c) OASIS Open 2016 -Copyright (c) 2013 Miek Gieben - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmiekg/pkcs11 v1.1.1 - BSD-3-Clause + + +Copyright 2013 Miek Gieben +Copyright (c) OASIS Open 2016 +Copyright (c) 2013 Miek Gieben + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40474,17 +40474,17 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmunnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 - BSD-3-Clause - - -Copyright (c) 2011, Open Knowledge Foundation Ltd. - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmunnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 - BSD-3-Clause + + +Copyright (c) 2011, Open Knowledge Foundation Ltd. + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40495,17 +40495,17 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmxk/go-flowrate v0.0.0-20140419014527-cca7078d478f - BSD-3-Clause - - -Copyright (c) 2014 The Go-FlowRate Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmxk/go-flowrate v0.0.0-20140419014527-cca7078d478f - BSD-3-Clause + + +Copyright (c) 2014 The Go-FlowRate Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40516,17 +40516,17 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fphayes/freeport v0.0.0-20220201140144-74d24b5ae9f5 - BSD-3-Clause - - -Copyright (c) 2014, Patrick Hayes / HighWire Press - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fphayes/freeport v0.0.0-20220201140144-74d24b5ae9f5 - BSD-3-Clause + + +Copyright (c) 2014, Patrick Hayes / HighWire Press + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40537,17 +40537,17 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fpkg/diff v0.0.0-20210226163009-20ebb0f2a09e - BSD-3-Clause - - -Copyright 2018 Joshua Bleecher Snyder - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fpkg/diff v0.0.0-20210226163009-20ebb0f2a09e - BSD-3-Clause + + +Copyright 2018 Joshua Bleecher Snyder + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40558,17 +40558,17 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fpmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 - BSD-3-Clause - - -Copyright (c) 2013, Patrick Mezard - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fpmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 - BSD-3-Clause + + +Copyright (c) 2013, Patrick Mezard + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40579,27 +40579,27 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2frogpeppe/go-internal v1.11.0 - BSD-3-Clause - - -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2022 The Go Authors -Copyright (c) 2018 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2frogpeppe/go-internal v1.11.0 - BSD-3-Clause + + +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2022 The Go Authors +Copyright (c) 2018 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40610,18 +40610,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fsagikazarmark/slog-shim v0.1.0 - BSD-3-Clause - - -Copyright 2022 The Go Authors -Copyright (c) 2009 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fsagikazarmark/slog-shim v0.1.0 - BSD-3-Clause + + +Copyright 2022 The Go Authors +Copyright (c) 2009 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40632,16 +40632,16 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fshirou%2Fgopsutil/v3 v3.23.2 - BSD-3-Clause - - - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fshirou%2Fgopsutil/v3 v3.23.2 - BSD-3-Clause + + + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40652,21 +40652,21 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fspf13/pflag v1.0.5 - BSD-3-Clause - - -Copyright (c) 2012 Alex Ogier -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -Copyright 2012 The Go Authors -Copyright (c) 2012 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fspf13/pflag v1.0.5 - BSD-3-Clause + + +Copyright (c) 2012 Alex Ogier +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +Copyright 2012 The Go Authors +Copyright (c) 2012 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40677,20 +40677,20 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Ftklauser/go-sysconf v0.3.11 - BSD-3-Clause - - -Copyright 2018 Tobias Klauser -Copyright 2021 Tobias Klauser -Copyright 2022 Tobias Klauser -Copyright (c) 2018-2022, Tobias Klauser - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Ftklauser/go-sysconf v0.3.11 - BSD-3-Clause + + +Copyright 2018 Tobias Klauser +Copyright 2021 Tobias Klauser +Copyright 2022 Tobias Klauser +Copyright (c) 2018-2022, Tobias Klauser + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40701,20 +40701,20 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fulikunitz/xz v0.5.11 - BSD-3-Clause - - -Copyright (c) 2009 The Go Authors -Copyright 2014-2022 Ulrich Kunitz -Copyright (c) 2014-2022 Ulrich Kunitz -copyright on a GUI. The Apple Computer, Inc. v. Microsoft Corp. - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fulikunitz/xz v0.5.11 - BSD-3-Clause + + +Copyright (c) 2009 The Go Authors +Copyright 2014-2022 Ulrich Kunitz +Copyright (c) 2014-2022 Ulrich Kunitz +copyright on a GUI. The Apple Computer, Inc. v. Microsoft Corp. + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40725,21 +40725,21 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fvbatts/tar-split v0.11.5 - BSD-3-Clause - - -Copyright 2009 The Go Authors -Copyright 2012 The Go Authors -Copyright 2013 The Go Authors -Copyright 2016 The Go Authors -Copyright (c) 2015 Vincent Batts, Raleigh, NC - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fvbatts/tar-split v0.11.5 - BSD-3-Clause + + +Copyright 2009 The Go Authors +Copyright 2012 The Go Authors +Copyright 2013 The Go Authors +Copyright 2016 The Go Authors +Copyright (c) 2015 Vincent Batts, Raleigh, NC + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40750,18 +40750,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fxhit%2Fgo-str2duration/v2 v2.1.0 - BSD-3-Clause - - -Copyright 2010 The Go Authors -Copyright (c) 2009 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fxhit%2Fgo-str2duration/v2 v2.1.0 - BSD-3-Clause + + +Copyright 2010 The Go Authors +Copyright (c) 2009 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40772,19 +40772,19 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go4.org/netipx v0.0.0-20231129151722-fdeea329fbba - BSD-3-Clause - - -Copyright 2020 The Inet.Af AUTHORS. -Copyright 2021 The Inet.Af AUTHORS. -Copyright (c) 2020 The Inet.af AUTHORS. - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go4.org/netipx v0.0.0-20231129151722-fdeea329fbba - BSD-3-Clause + + +Copyright 2020 The Inet.Af AUTHORS. +Copyright 2021 The Inet.Af AUTHORS. +Copyright (c) 2020 The Inet.af AUTHORS. + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40795,19 +40795,19 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2Fx%2Fexp/typeparams v0.0.0-20221208152030-732eee02a75a - BSD-3-Clause - - -Copyright 2021 The Go Authors -Copyright 2022 The Go Authors -Copyright (c) 2009 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2Fx%2Fexp/typeparams v0.0.0-20221208152030-732eee02a75a - BSD-3-Clause + + +Copyright 2021 The Go Authors +Copyright 2022 The Go Authors +Copyright (c) 2009 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40818,19 +40818,19 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2Fx/lint v0.0.0-20200302205851-738671d3881b - BSD-3-Clause - - -Copyright 2013 The Go Authors -Copyright (c) 2013 The Go Authors -Copyright (c) 2018 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2Fx/lint v0.0.0-20200302205851-738671d3881b - BSD-3-Clause + + +Copyright 2013 The Go Authors +Copyright (c) 2013 The Go Authors +Copyright (c) 2018 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40841,31 +40841,31 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2fx/oauth2 v0.18.0 - BSD-3-Clause - - -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright 2022 The Go Authors -Copyright 2023 The Go Authors -Copyright 2024 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright 2015 The oauth2 Authors -Copyright 2017 The oauth2 Authors -Copyright 2018 The oauth2 Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2fx/oauth2 v0.18.0 - BSD-3-Clause + + +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright 2022 The Go Authors +Copyright 2023 The Go Authors +Copyright 2024 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright 2015 The oauth2 Authors +Copyright 2017 The oauth2 Authors +Copyright 2018 The oauth2 Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40876,41 +40876,41 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -google.golang.org/api v0.153.0 - BSD-3-Clause - - -Copyright Google LLC. -Copyright 2011 Google LLC. -Copyright 2012 Google LLC. -Copyright 2013 Google LLC. -Copyright 2015 Google LLC. -Copyright 2016 Google LLC. -Copyright 2017 Google LLC. -Copyright 2018 Google LLC. -Copyright 2019 Google LLC. -Copyright 2020 Google LLC. -Copyright 2021 Google LLC. -Copyright 2022 Google LLC. -Copyright 2023 Google LLC. -Copyright YEAR Google LLC. -Copyright 2013 Joshua Tacoma -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright (c) 2011 Google Inc. -Copyright (c) 2013 Joshua Tacoma -COPYRIGHT COUNTERFEIT - Promotion -Copyright d d d d (Google LLC The Go Authors)( .) - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +google.golang.org/api v0.153.0 - BSD-3-Clause + + +Copyright Google LLC. +Copyright 2011 Google LLC. +Copyright 2012 Google LLC. +Copyright 2013 Google LLC. +Copyright 2015 Google LLC. +Copyright 2016 Google LLC. +Copyright 2017 Google LLC. +Copyright 2018 Google LLC. +Copyright 2019 Google LLC. +Copyright 2020 Google LLC. +Copyright 2021 Google LLC. +Copyright 2022 Google LLC. +Copyright 2023 Google LLC. +Copyright YEAR Google LLC. +Copyright 2013 Joshua Tacoma +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright (c) 2011 Google Inc. +Copyright (c) 2013 Joshua Tacoma +COPYRIGHT COUNTERFEIT - Promotion +Copyright d d d d (Google LLC The Go Authors)( .) + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40921,18 +40921,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in/errgo.v2 v2.1.0 - BSD-3-Clause - - -Copyright 2014 Roger Peppe -Copyright (c) 2013, Roger Peppe - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in/errgo.v2 v2.1.0 - BSD-3-Clause + + +Copyright 2014 Roger Peppe +Copyright (c) 2013, Roger Peppe + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40943,24 +40943,24 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in/fsnotify.v1 v1.4.7 - BSD-3-Clause - - -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2013 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright (c) 2012 The Go Authors -Copyright (c) 2012 fsnotify Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in/fsnotify.v1 v1.4.7 - BSD-3-Clause + + +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2013 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright (c) 2012 The Go Authors +Copyright (c) 2012 fsnotify Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40971,18 +40971,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in/inf.v0 v0.9.1 - BSD-3-Clause - - -Copyright (c) 2012 Peter Suranyi -Portions Copyright (c) 2009 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in/inf.v0 v0.9.1 - BSD-3-Clause + + +Copyright (c) 2012 Peter Suranyi +Portions Copyright (c) 2009 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40993,18 +40993,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 - BSD-3-Clause - - -Copyright (c) 2011 - Gustavo Niemeyer -Copyright (c) 2010-2011 - Gustavo Niemeyer - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 - BSD-3-Clause + + +Copyright (c) 2011 - Gustavo Niemeyer +Copyright (c) 2010-2011 - Gustavo Niemeyer + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -41015,18 +41015,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -hoist-non-react-statics 3.3.2 - BSD-3-Clause -https://github.com/mridgway/hoist-non-react-statics#readme - -Copyright 2015, Yahoo! Inc. -Copyright (c) 2015, Yahoo! Inc. - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +hoist-non-react-statics 3.3.2 - BSD-3-Clause +https://github.com/mridgway/hoist-non-react-statics#readme + +Copyright 2015, Yahoo! Inc. +Copyright (c) 2015, Yahoo! Inc. + Software License Agreement (BSD License) ======================================== @@ -41056,19 +41056,19 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -joi 17.11.0 - BSD-3-Clause -https://github.com/hapijs/joi#readme - -Copyright (c) 2012-2014, Walmart -Copyright (c) 2012-2022, Sideway. Inc. -Copyright (c) 2012-2022, Project contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +joi 17.11.0 - BSD-3-Clause +https://github.com/hapijs/joi#readme + +Copyright (c) 2012-2014, Walmart +Copyright (c) 2012-2022, Sideway. Inc. +Copyright (c) 2012-2022, Project contributors + Copyright (c) 2012-2022, Project contributors. Copyright (c) 2012-2022, Sideway. Inc. Copyright (c) 2012-2014, Walmart. @@ -41080,21 +41080,21 @@ Redistribution and use in source and binary forms, with or without modification, * The names of any contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -qs 6.11.0 - BSD-3-Clause -https://github.com/ljharb/qs - -Copyright (c) 2014, Nathan LaFreniere and other contributors (https://github.com/ljharb/qs/graphs/contributors) - -BSD 3-Clause License -Copyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/contributors) -All rights reserved. + +--------------------------------------------------------- + +--------------------------------------------------------- + +qs 6.11.0 - BSD-3-Clause +https://github.com/ljharb/qs + +Copyright (c) 2014, Nathan LaFreniere and other contributors (https://github.com/ljharb/qs/graphs/contributors) + +BSD 3-Clause License + +Copyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/contributors) +All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -41120,18 +41120,18 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -rtl-detect 1.1.2 - BSD-3-Clause -https://github.com/shadiabuhilal/rtl-detect - -Copyright 2015 Yahoo Inc. -Copyright 2015, Yahoo! Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +rtl-detect 1.1.2 - BSD-3-Clause +https://github.com/shadiabuhilal/rtl-detect + +Copyright 2015 Yahoo Inc. +Copyright 2015, Yahoo! Inc. + Copyright 2015 Yahoo Inc. All rights reserved. @@ -41159,18 +41159,18 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -serialize-javascript 6.0.1 - BSD-3-Clause -https://github.com/yahoo/serialize-javascript - -Copyright 2014 Yahoo! Inc. -Copyright (c) 2014, Yahoo! Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +serialize-javascript 6.0.1 - BSD-3-Clause +https://github.com/yahoo/serialize-javascript + +Copyright 2014 Yahoo! Inc. +Copyright (c) 2014, Yahoo! Inc. + Copyright 2014 Yahoo! Inc. All rights reserved. @@ -41198,20 +41198,20 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -shelljs 0.8.5 - BSD-3-Clause -http://github.com/shelljs/shelljs - -Copyright (c) 2012 Artur Adib -Copyright (c) 2010 Ryan McGrath -Copyright (c) 2012, Artur Adib -Copyright (c) 2012 Artur Adib http://github.com/shelljs/shelljs - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +shelljs 0.8.5 - BSD-3-Clause +http://github.com/shelljs/shelljs + +Copyright (c) 2012 Artur Adib +Copyright (c) 2010 Ryan McGrath +Copyright (c) 2012, Artur Adib +Copyright (c) 2012 Artur Adib http://github.com/shelljs/shelljs + Copyright (c) 2012, Artur Adib All rights reserved. @@ -41238,21 +41238,21 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -source-map 0.6.1 - BSD-3-Clause -https://github.com/mozilla/source-map - -Copyright 2011 The Closure Compiler Authors -Copyright 2011 Mozilla Foundation and contributors -Copyright 2014 Mozilla Foundation and contributors -Copyright 2009-2011 Mozilla Foundation and contributors -Copyright (c) 2009-2011, Mozilla Foundation and contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +source-map 0.6.1 - BSD-3-Clause +https://github.com/mozilla/source-map + +Copyright 2011 The Closure Compiler Authors +Copyright 2011 Mozilla Foundation and contributors +Copyright 2014 Mozilla Foundation and contributors +Copyright 2009-2011 Mozilla Foundation and contributors +Copyright (c) 2009-2011, Mozilla Foundation and contributors + Copyright (c) 2009-2011, Mozilla Foundation and contributors All rights reserved. @@ -41281,21 +41281,21 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -source-map 0.7.4 - BSD-3-Clause -https://github.com/mozilla/source-map - -Copyright 2011 The Closure Compiler Authors -Copyright 2011 Mozilla Foundation and contributors -Copyright 2014 Mozilla Foundation and contributors -Copyright 2009-2011 Mozilla Foundation and contributors -Copyright (c) 2009-2011, Mozilla Foundation and contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +source-map 0.7.4 - BSD-3-Clause +https://github.com/mozilla/source-map + +Copyright 2011 The Closure Compiler Authors +Copyright 2011 Mozilla Foundation and contributors +Copyright 2014 Mozilla Foundation and contributors +Copyright 2009-2011 Mozilla Foundation and contributors +Copyright (c) 2009-2011, Mozilla Foundation and contributors + Copyright (c) 2009-2011, Mozilla Foundation and contributors All rights reserved. @@ -41324,21 +41324,21 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -source-map-js 1.0.2 - BSD-3-Clause -https://github.com/7rulnik/source-map-js - -Copyright 2011 The Closure Compiler Authors -Copyright 2011 Mozilla Foundation and contributors -Copyright 2014 Mozilla Foundation and contributors -Copyright 2009-2011 Mozilla Foundation and contributors -Copyright (c) 2009-2011, Mozilla Foundation and contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +source-map-js 1.0.2 - BSD-3-Clause +https://github.com/7rulnik/source-map-js + +Copyright 2011 The Closure Compiler Authors +Copyright 2011 Mozilla Foundation and contributors +Copyright 2014 Mozilla Foundation and contributors +Copyright 2009-2011 Mozilla Foundation and contributors +Copyright (c) 2009-2011, Mozilla Foundation and contributors + Copyright (c) 2009-2011, Mozilla Foundation and contributors All rights reserved. @@ -41367,366 +41367,366 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdaviddengcn/go-colortext v1.0.0 - BSD-3-Clause AND MIT - - -Copyright (c) 2016 David Deng -Copyright (c) 2016, David Deng - -BSD-3-Clause AND MIT - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fghodss/yaml v1.0.0 - BSD-3-Clause AND MIT - - -Copyright (c) 2014 Sam Ghods -Copyright 2013 The Go Authors -Copyright (c) 2012 The Go Authors - -BSD-3-Clause AND MIT - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fklauspost/pgzip v1.2.6 - BSD-3-Clause AND MIT - - -Copyright (c) 2014 Klaus Post -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -Copyright (c) 2012 The Go Authors - -BSD-3-Clause AND MIT - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2fx/crypto v0.21.0 - BSD-3-Clause AND OTHER - - -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2013 The Go Authors -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright 2022 The Go Authors -Copyright 2023 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright (c) 2017 The Go Authors -Copyright (c) 2019 The Go Authors -Copyright (c) 2020 The Go Authors -Copyright (c) 2021 The Go Authors - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2fx/exp v0.0.0-20231206192017-f3f8817b8deb - BSD-3-Clause AND OTHER - - -Copyright 2009 The Go Authors -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2013 The Go Authors -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright 2022 The Go Authors -Copyright 2023 The Go Authors -Copyright (c) 2009 The Go Authors - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2fx/mod v0.14.0 - BSD-3-Clause AND OTHER - - -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright (c) 2009 The Go Authors - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2fx/net v0.22.0 - BSD-3-Clause AND OTHER - - -(c) cc.fr -Copyright (c) 2009 Apple Inc. -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2013 The Go Authors -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright 2022 The Go Authors -Copyright 2023 The Go Authors -Copyright 2024 The Go Authors -Copyright (c) 2009 The Go Authors -(c) if err p.JoinGroup en0, &net.UDPAddr IP group - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2fx/sync v0.6.0 - BSD-3-Clause AND OTHER - - -Copyright 2013 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2019 The Go Authors -Copyright 2023 The Go Authors -Copyright (c) 2009 The Go Authors - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2fx/sys v0.18.0 - BSD-3-Clause AND OTHER - - -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2013 The Go Authors -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright 2022 The Go Authors -Copyright 2023 The Go Authors -Copyright 2024 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright 2009,2010 The Go Authors - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2fx/term v0.18.0 - BSD-3-Clause AND OTHER - - -Copyright 2011 The Go Authors -Copyright 2013 The Go Authors -Copyright 2019 The Go Authors -Copyright 2021 The Go Authors -Copyright (c) 2009 The Go Authors - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2Fx/text v0.14.0 - BSD-3-Clause AND OTHER - - -(c) Bv -(c) (c) A -(c) (c) AAEE -(c) AeHa (c) -(c) EAiE (c) -(c) EeAoq (c) -(c) EmeEBu (c) -(c) lEEe (c) AE -(c) aA"AE (c) 1AE -(c) oav!A (c) AY I -(c) uSSg1/2a+-N (c) OY -Copyright 2009 The Go Authors -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2013 The Go Authors -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2021 The Go Authors -Copyright (c) 2009 The Go Authors - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2Fx/time v0.5.0 - BSD-3-Clause AND OTHER - - -Copyright 2015 The Go Authors -Copyright 2022 The Go Authors -Copyright (c) 2009 The Go Authors - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2Fx/tools v0.17.0 - BSD-3-Clause AND OTHER - - -Copyright Jorn Zaefferer -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2013 The Go Authors -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright 2022 The Go Authors -Copyright 2023 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright (c) 2017 The Go Authors -Portions Copyright (c) 2009 The Go Authors -Portions Copyright (c) 2004,2006 Bruce Ellis -Copyright (c) 1994-1999 Lucent Technologies Inc. -Portions Copyright (c) 1997-1999 Vita Nuova Limited -Copyright 2013 jQuery Foundation and other contributors -Copyright (c) 2000-2007 Lucent Technologies Inc. and others -Portions Copyright (c) 1995-1997 C H Forsyth (forsyth@terzarima.net) -Portions Copyright (c) 2005-2007 C H Forsyth (forsyth@terzarima.net) -Portions Copyright (c) 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com) - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2Fx/xerrors v0.0.0-20220907171357-04be3eba64a2 - BSD-3-Clause AND OTHER - - -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright (c) 2019 The Go Authors - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -google.golang.org/protobuf v1.33.0 - BSD-3-Clause AND OTHER - - -Copyright 2008 Google Inc. -Copyright 2023 Google Inc. -Copyright d d d d Google Inc -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright 2022 The Go Authors -Copyright 2023 The Go Authors -Copyright 2024 The Go Authors -Copyright d d d d The Go Authors -Copyright (c) 2018 The Go Authors - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -node-forge 1.3.1 - BSD-3-Clause OR GPL-2.0 OR (BSD-3-Clause AND GPL-2.0) -https://github.com/digitalbazaar/forge - -(c) 2016 Permission -Copyright (c) 2005 Tom Wu -Copyright (c) 2003-2005 Tom Wu -Copyright (c) 2005-2009 Tom Wu -Copyright (c) 2012 Kenji Urushima -Copyright (c) 2013 Digital Bazaar, Inc. -Copyright (c) 2014 Digital Bazaar, Inc. -Copyright (c) 2019 Digital Bazaar, Inc. -Copyright (c) 2010, Digital Bazaar, Inc. -Copyright 2011-2016 Digital Bazaar, Inc. -Copyright 2011-2017 Digital Bazaar, Inc. -copyrighted by the Free Software Foundation -Copyright (c) 2008-2013 Digital Bazaar, Inc. -Copyright (c) 2009-2012 Digital Bazaar, Inc. -Copyright (c) 2009-2014 Digital Bazaar, Inc. -Copyright (c) 2009-2015 Digital Bazaar, Inc. -Copyright (c) 2010-2012 Digital Bazaar, Inc. -Copyright (c) 2010-2013 Digital Bazaar, Inc. -Copyright (c) 2010-2014 Digital Bazaar, Inc. -Copyright (c) 2010-2015 Digital Bazaar, Inc. -Copyright (c) 2010-2018 Digital Bazaar, Inc. -Copyright (c) 2011-2014 Digital Bazaar, Inc. -Copyright (c) 2012-2014 Digital Bazaar, Inc. -Copyright (c) 2012-2015 Digital Bazaar, Inc. -Copyright (c) 2013-2014 Digital Bazaar, Inc. -Copyright (c) 2014-2015 Digital Bazaar, Inc. -Copyright (c) 2017-2019 Digital Bazaar, Inc. -Copyright 2012 Stefan Siegl -Copyright (c) 2012 Stefan Siegl -Copyright (c) Ellis Pritchard, Guardian Unlimited 2003 -Copyright (c) 1989, 1991 Free Software Foundation, Inc. -Copyright (c) 2014 Lautaro Cozzani - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdaviddengcn/go-colortext v1.0.0 - BSD-3-Clause AND MIT + + +Copyright (c) 2016 David Deng +Copyright (c) 2016, David Deng + +BSD-3-Clause AND MIT + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fghodss/yaml v1.0.0 - BSD-3-Clause AND MIT + + +Copyright (c) 2014 Sam Ghods +Copyright 2013 The Go Authors +Copyright (c) 2012 The Go Authors + +BSD-3-Clause AND MIT + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fklauspost/pgzip v1.2.6 - BSD-3-Clause AND MIT + + +Copyright (c) 2014 Klaus Post +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +Copyright (c) 2012 The Go Authors + +BSD-3-Clause AND MIT + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2fx/crypto v0.21.0 - BSD-3-Clause AND OTHER + + +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2013 The Go Authors +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright 2022 The Go Authors +Copyright 2023 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright (c) 2017 The Go Authors +Copyright (c) 2019 The Go Authors +Copyright (c) 2020 The Go Authors +Copyright (c) 2021 The Go Authors + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2fx/exp v0.0.0-20231206192017-f3f8817b8deb - BSD-3-Clause AND OTHER + + +Copyright 2009 The Go Authors +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2013 The Go Authors +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright 2022 The Go Authors +Copyright 2023 The Go Authors +Copyright (c) 2009 The Go Authors + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2fx/mod v0.14.0 - BSD-3-Clause AND OTHER + + +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright (c) 2009 The Go Authors + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2fx/net v0.22.0 - BSD-3-Clause AND OTHER + + +(c) cc.fr +Copyright (c) 2009 Apple Inc. +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2013 The Go Authors +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright 2022 The Go Authors +Copyright 2023 The Go Authors +Copyright 2024 The Go Authors +Copyright (c) 2009 The Go Authors +(c) if err p.JoinGroup en0, &net.UDPAddr IP group + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2fx/sync v0.6.0 - BSD-3-Clause AND OTHER + + +Copyright 2013 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2019 The Go Authors +Copyright 2023 The Go Authors +Copyright (c) 2009 The Go Authors + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2fx/sys v0.18.0 - BSD-3-Clause AND OTHER + + +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2013 The Go Authors +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright 2022 The Go Authors +Copyright 2023 The Go Authors +Copyright 2024 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright 2009,2010 The Go Authors + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2fx/term v0.18.0 - BSD-3-Clause AND OTHER + + +Copyright 2011 The Go Authors +Copyright 2013 The Go Authors +Copyright 2019 The Go Authors +Copyright 2021 The Go Authors +Copyright (c) 2009 The Go Authors + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2Fx/text v0.14.0 - BSD-3-Clause AND OTHER + + +(c) Bv +(c) (c) A +(c) (c) AAEE +(c) AeHa (c) +(c) EAiE (c) +(c) EeAoq (c) +(c) EmeEBu (c) +(c) lEEe (c) AE +(c) aA"AE (c) 1AE +(c) oav!A (c) AY I +(c) uSSg1/2a+-N (c) OY +Copyright 2009 The Go Authors +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2013 The Go Authors +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2021 The Go Authors +Copyright (c) 2009 The Go Authors + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2Fx/time v0.5.0 - BSD-3-Clause AND OTHER + + +Copyright 2015 The Go Authors +Copyright 2022 The Go Authors +Copyright (c) 2009 The Go Authors + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2Fx/tools v0.17.0 - BSD-3-Clause AND OTHER + + +Copyright Jorn Zaefferer +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2013 The Go Authors +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright 2022 The Go Authors +Copyright 2023 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright (c) 2017 The Go Authors +Portions Copyright (c) 2009 The Go Authors +Portions Copyright (c) 2004,2006 Bruce Ellis +Copyright (c) 1994-1999 Lucent Technologies Inc. +Portions Copyright (c) 1997-1999 Vita Nuova Limited +Copyright 2013 jQuery Foundation and other contributors +Copyright (c) 2000-2007 Lucent Technologies Inc. and others +Portions Copyright (c) 1995-1997 C H Forsyth (forsyth@terzarima.net) +Portions Copyright (c) 2005-2007 C H Forsyth (forsyth@terzarima.net) +Portions Copyright (c) 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com) + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2Fx/xerrors v0.0.0-20220907171357-04be3eba64a2 - BSD-3-Clause AND OTHER + + +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright (c) 2019 The Go Authors + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +google.golang.org/protobuf v1.33.0 - BSD-3-Clause AND OTHER + + +Copyright 2008 Google Inc. +Copyright 2023 Google Inc. +Copyright d d d d Google Inc +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright 2022 The Go Authors +Copyright 2023 The Go Authors +Copyright 2024 The Go Authors +Copyright d d d d The Go Authors +Copyright (c) 2018 The Go Authors + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +node-forge 1.3.1 - BSD-3-Clause OR GPL-2.0 OR (BSD-3-Clause AND GPL-2.0) +https://github.com/digitalbazaar/forge + +(c) 2016 Permission +Copyright (c) 2005 Tom Wu +Copyright (c) 2003-2005 Tom Wu +Copyright (c) 2005-2009 Tom Wu +Copyright (c) 2012 Kenji Urushima +Copyright (c) 2013 Digital Bazaar, Inc. +Copyright (c) 2014 Digital Bazaar, Inc. +Copyright (c) 2019 Digital Bazaar, Inc. +Copyright (c) 2010, Digital Bazaar, Inc. +Copyright 2011-2016 Digital Bazaar, Inc. +Copyright 2011-2017 Digital Bazaar, Inc. +copyrighted by the Free Software Foundation +Copyright (c) 2008-2013 Digital Bazaar, Inc. +Copyright (c) 2009-2012 Digital Bazaar, Inc. +Copyright (c) 2009-2014 Digital Bazaar, Inc. +Copyright (c) 2009-2015 Digital Bazaar, Inc. +Copyright (c) 2010-2012 Digital Bazaar, Inc. +Copyright (c) 2010-2013 Digital Bazaar, Inc. +Copyright (c) 2010-2014 Digital Bazaar, Inc. +Copyright (c) 2010-2015 Digital Bazaar, Inc. +Copyright (c) 2010-2018 Digital Bazaar, Inc. +Copyright (c) 2011-2014 Digital Bazaar, Inc. +Copyright (c) 2012-2014 Digital Bazaar, Inc. +Copyright (c) 2012-2015 Digital Bazaar, Inc. +Copyright (c) 2013-2014 Digital Bazaar, Inc. +Copyright (c) 2014-2015 Digital Bazaar, Inc. +Copyright (c) 2017-2019 Digital Bazaar, Inc. +Copyright 2012 Stefan Siegl +Copyright (c) 2012 Stefan Siegl +Copyright (c) Ellis Pritchard, Guardian Unlimited 2003 +Copyright (c) 1989, 1991 Free Software Foundation, Inc. +Copyright (c) 2014 Lautaro Cozzani + You may use the Forge project under the terms of either the BSD License or the GNU General Public License (GPL) Version 2. @@ -42058,16 +42058,16 @@ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fpascaldekloe/goe v0.1.0 - CC0-1.0 - - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fpascaldekloe/goe v0.1.0 - CC0-1.0 + + + Creative Commons Legal Code CC0 1.0 Universal CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER. @@ -42108,16 +42108,16 @@ For these and/or other purposes and motivations, and without any expectation of c. Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. - d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdn-data 2.0.14 - CC0-1.0 -https://developer.mozilla.org/ - - + d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdn-data 2.0.14 - CC0-1.0 +https://developer.mozilla.org/ + + CC0 1.0 Universal Statement of Purpose @@ -42234,26 +42234,26 @@ Affirmer's express Statement of Purpose. For more information, please see - - ---------------------------------------------------------- - ---------------------------------------------------------- - -type-fest 2.19.0 - CC0-1.0 OR MIT OR (CC0-1.0 AND MIT) -https://github.com/sindresorhus/type-fest#readme - - -CC0-1.0 OR MIT OR (CC0-1.0 AND MIT) - ---------------------------------------------------------- - ---------------------------------------------------------- - -caniuse-lite 1.0.30001571 - CC-BY-4.0 -https://github.com/browserslist/caniuse-lite#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +type-fest 2.19.0 - CC0-1.0 OR MIT OR (CC0-1.0 AND MIT) +https://github.com/sindresorhus/type-fest#readme + + +CC0-1.0 OR MIT OR (CC0-1.0 AND MIT) + +--------------------------------------------------------- + +--------------------------------------------------------- + +caniuse-lite 1.0.30001571 - CC-BY-4.0 +https://github.com/browserslist/caniuse-lite#readme + + Attribution 4.0 International ======================================================================= @@ -42649,17 +42649,17 @@ the avoidance of doubt, this paragraph does not form part of the public licenses. Creative Commons may be contacted at creativecommons.org. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@trysound/sax 0.2.0 - ISC -https://github.com/svg/sax#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@trysound/sax 0.2.0 - ISC +https://github.com/svg/sax#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -42675,18 +42675,18 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@ungap/structured-clone 1.2.0 - ISC -https://github.com/ungap/structured-clone#readme - -(c) Andrea Giammarchi -Copyright (c) 2021, Andrea Giammarchi - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@ungap/structured-clone 1.2.0 - ISC +https://github.com/ungap/structured-clone#readme + +(c) Andrea Giammarchi +Copyright (c) 2021, Andrea Giammarchi + ISC License Copyright (c) 2021, Andrea Giammarchi, @WebReflection @@ -42702,17 +42702,17 @@ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ansi-align 3.0.1 - ISC -https://github.com/nexdrew/ansi-align#readme - -Copyright (c) 2016, Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ansi-align 3.0.1 - ISC +https://github.com/nexdrew/ansi-align#readme + +Copyright (c) 2016, Contributors + Copyright (c) 2016, Contributors Permission to use, copy, modify, and/or distribute this software for any purpose @@ -42726,17 +42726,17 @@ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -anymatch 3.1.3 - ISC -https://github.com/micromatch/anymatch - -Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +anymatch 3.1.3 - ISC +https://github.com/micromatch/anymatch + +Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com) + The ISC License Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com) @@ -42752,33 +42752,33 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -at-least-node 1.0.0 - ISC -https://github.com/RyanZim/at-least-node#readme - -Copyright (c) 2020 Ryan Zimmerman - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +at-least-node 1.0.0 - ISC +https://github.com/RyanZim/at-least-node#readme + +Copyright (c) 2020 Ryan Zimmerman + The ISC License Copyright (c) 2020 Ryan Zimmerman Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -boolbase 1.0.0 - ISC -https://github.com/fb55/boolbase - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +boolbase 1.0.0 - ISC +https://github.com/fb55/boolbase + + ISC License Copyright (c) 2004-2010 by Internet Systems Consortium, Inc. ("ISC") @@ -42787,17 +42787,17 @@ Copyright (c) 1995-2003 by Internet Software Consortium Permission to use, copy, modify, and /or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. -THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -common-path-prefix 3.0.0 - ISC -https://github.com/novemberborn/common-path-prefix#readme - -Copyright (c) 2016, Mark Wubben - +THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +common-path-prefix 3.0.0 - ISC +https://github.com/novemberborn/common-path-prefix#readme + +Copyright (c) 2016, Mark Wubben + ISC License (ISC) Copyright (c) 2016, Mark Wubben @@ -42812,16 +42812,16 @@ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -css-declaration-sorter 6.4.1 - ISC -https://github.com/Siilwyn/css-declaration-sorter#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +css-declaration-sorter 6.4.1 - ISC +https://github.com/Siilwyn/css-declaration-sorter#readme + + ISC License Copyright (c) @@ -42837,33 +42837,33 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -electron-to-chromium 1.4.616 - ISC -https://github.com/kilian/electron-to-chromium#readme - -Copyright 2018 Kilian Valkhof - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +electron-to-chromium 1.4.616 - ISC +https://github.com/kilian/electron-to-chromium#readme + +Copyright 2018 Kilian Valkhof + Copyright 2018 Kilian Valkhof Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fastq 1.16.0 - ISC -https://github.com/mcollina/fastq#readme - -Copyright (c) 2015-2020, Matteo Collina - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fastq 1.16.0 - ISC +https://github.com/mcollina/fastq#readme + +Copyright (c) 2015-2020, Matteo Collina + Copyright (c) 2015-2020, Matteo Collina Permission to use, copy, modify, and/or distribute this software for any @@ -42877,18 +42877,18 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fs.realpath 1.0.0 - ISC -https://github.com/isaacs/fs.realpath#readme - -Copyright (c) Isaac Z. Schlueter and Contributors -Copyright Joyent, Inc. and other Node contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fs.realpath 1.0.0 - ISC +https://github.com/isaacs/fs.realpath#readme + +Copyright (c) Isaac Z. Schlueter and Contributors +Copyright Joyent, Inc. and other Node contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -42932,17 +42932,17 @@ the licensed code: 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -get-own-enumerable-property-symbols 3.0.2 - ISC -https://github.com/mightyiam/get-own-enumerable-property-symbols#readme - -Copyright (c) 2019, Shahar Or - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +get-own-enumerable-property-symbols 3.0.2 - ISC +https://github.com/mightyiam/get-own-enumerable-property-symbols#readme + +Copyright (c) 2019, Shahar Or + Copyright (c) 2019, Shahar Or Permission to use, copy, modify, and/or distribute this software for any purpose @@ -42955,20 +42955,20 @@ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF -THIS SOFTWARE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdavecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc - ISC - - -Copyright (c) 2013 Dave Collins -Copyright (c) 2012-2016 Dave Collins -Copyright (c) 2013-2016 Dave Collins -Copyright (c) 2015-2016 Dave Collins - +THIS SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdavecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc - ISC + + +Copyright (c) 2013 Dave Collins +Copyright (c) 2012-2016 Dave Collins +Copyright (c) 2013-2016 Dave Collins +Copyright (c) 2015-2016 Dave Collins + ISC License Copyright (c) 2004-2010 by Internet Systems Consortium, Inc. ("ISC") @@ -42977,38 +42977,38 @@ Copyright (c) 1995-2003 by Internet Software Consortium Permission to use, copy, modify, and /or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. -THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdecred%2Fdcrd%2Fdcrec%2Fsecp256k1/v4 v4.2.0 - ISC - - -Copyright 2015 The btcsuite -Copyright (c) 2014 The btcsuite -Copyright (c) 2015 The btcsuite -Copyright 2013-2014 The btcsuite -Copyright 2013-2016 The btcsuite -Copyright (c) 2013-2014 The btcsuite -Copyright (c) 2013-2016 The btcsuite -Copyright (c) 2013-2017 The btcsuite -Copyright (c) 2013-2022 Dave Collins -Copyright (c) 2015-2016 The btcsuite -Copyright (c) 2017 The Lightning Network -Copyright (c) 2020 The Decred developers -Copyright (c) 2022 The Decred developers -Copyright (c) 2014 Conformal Systems LLC. -Copyright 2020-2022 The Decred developers -Copyright (c) 2015-2017 The Decred developers -Copyright (c) 2015-2020 The Decred developers -Copyright (c) 2015-2021 The Decred developers -Copyright (c) 2015-2022 The Decred developers -Copyright (c) 2015-2023 The Decred developers -Copyright (c) 2020-2021 The Decred developers -Copyright (c) 2020-2022 The Decred developers - +THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdecred%2Fdcrd%2Fdcrec%2Fsecp256k1/v4 v4.2.0 - ISC + + +Copyright 2015 The btcsuite +Copyright (c) 2014 The btcsuite +Copyright (c) 2015 The btcsuite +Copyright 2013-2014 The btcsuite +Copyright 2013-2016 The btcsuite +Copyright (c) 2013-2014 The btcsuite +Copyright (c) 2013-2016 The btcsuite +Copyright (c) 2013-2017 The btcsuite +Copyright (c) 2013-2022 Dave Collins +Copyright (c) 2015-2016 The btcsuite +Copyright (c) 2017 The Lightning Network +Copyright (c) 2020 The Decred developers +Copyright (c) 2022 The Decred developers +Copyright (c) 2014 Conformal Systems LLC. +Copyright 2020-2022 The Decred developers +Copyright (c) 2015-2017 The Decred developers +Copyright (c) 2015-2020 The Decred developers +Copyright (c) 2015-2021 The Decred developers +Copyright (c) 2015-2022 The Decred developers +Copyright (c) 2015-2023 The Decred developers +Copyright (c) 2020-2021 The Decred developers +Copyright (c) 2020-2022 The Decred developers + ISC License Copyright (c) 2004-2010 by Internet Systems Consortium, Inc. ("ISC") @@ -43017,33 +43017,33 @@ Copyright (c) 1995-2003 by Internet Software Consortium Permission to use, copy, modify, and /or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. -THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github-slugger 1.5.0 - ISC -https://github.com/Flet/github-slugger - -Copyright (c) 2015, Dan Flettre - +THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github-slugger 1.5.0 - ISC +https://github.com/Flet/github-slugger + +Copyright (c) 2015, Dan Flettre + Copyright (c) 2015, Dan Flettre Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -glob 7.2.3 - ISC -https://github.com/isaacs/node-glob#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +glob 7.2.3 - ISC +https://github.com/isaacs/node-glob#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43065,17 +43065,17 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. Glob's logo created by Tanya Brassie , licensed under a Creative Commons Attribution-ShareAlike 4.0 International License https://creativecommons.org/licenses/by-sa/4.0/ - - ---------------------------------------------------------- - ---------------------------------------------------------- - -glob-parent 5.1.2 - ISC -https://github.com/gulpjs/glob-parent#readme - -Copyright (c) 2015, 2019 Elan Shanker - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +glob-parent 5.1.2 - ISC +https://github.com/gulpjs/glob-parent#readme + +Copyright (c) 2015, 2019 Elan Shanker + The ISC License Copyright (c) 2015, 2019 Elan Shanker @@ -43091,17 +43091,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -glob-parent 6.0.2 - ISC -https://github.com/gulpjs/glob-parent#readme - -Copyright (c) 2015, 2019 Elan Shanker, 2021 Blaine Bublitz , Eric Schoffstall and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +glob-parent 6.0.2 - ISC +https://github.com/gulpjs/glob-parent#readme + +Copyright (c) 2015, 2019 Elan Shanker, 2021 Blaine Bublitz , Eric Schoffstall and other contributors + The ISC License Copyright (c) 2015, 2019 Elan Shanker, 2021 Blaine Bublitz , Eric Schoffstall and other contributors @@ -43117,17 +43117,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -graceful-fs 4.2.10 - ISC -https://github.com/isaacs/node-graceful-fs#readme - -Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +graceful-fs 4.2.10 - ISC +https://github.com/isaacs/node-graceful-fs#readme + +Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors + The ISC License Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors @@ -43143,17 +43143,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -graceful-fs 4.2.11 - ISC -https://github.com/isaacs/node-graceful-fs#readme - -Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +graceful-fs 4.2.11 - ISC +https://github.com/isaacs/node-graceful-fs#readme + +Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors + The ISC License Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors @@ -43169,34 +43169,34 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -icss-utils 5.1.0 - ISC -https://github.com/css-modules/icss-utils#readme - -Copyright 2018 Glen Maddern - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +icss-utils 5.1.0 - ISC +https://github.com/css-modules/icss-utils#readme + +Copyright 2018 Glen Maddern + ISC License (ISC) Copyright 2018 Glen Maddern Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -inflight 1.0.6 - ISC -https://github.com/isaacs/inflight - -Copyright (c) Isaac Z. Schlueter - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +inflight 1.0.6 - ISC +https://github.com/isaacs/inflight + +Copyright (c) Isaac Z. Schlueter + The ISC License Copyright (c) Isaac Z. Schlueter @@ -43212,17 +43212,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -inherits 2.0.4 - ISC -https://github.com/isaacs/inherits#readme - -Copyright (c) Isaac Z. Schlueter - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +inherits 2.0.4 - ISC +https://github.com/isaacs/inherits#readme + +Copyright (c) Isaac Z. Schlueter + The ISC License Copyright (c) Isaac Z. Schlueter @@ -43239,17 +43239,17 @@ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ini 1.3.8 - ISC -https://github.com/isaacs/ini#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ini 1.3.8 - ISC +https://github.com/isaacs/ini#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43265,17 +43265,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ini 2.0.0 - ISC -https://github.com/isaacs/ini#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ini 2.0.0 - ISC +https://github.com/isaacs/ini#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43291,17 +43291,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -isexe 2.0.0 - ISC -https://github.com/isaacs/isexe#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +isexe 2.0.0 - ISC +https://github.com/isaacs/isexe#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43317,17 +43317,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -lru-cache 5.1.1 - ISC -https://github.com/isaacs/node-lru-cache#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +lru-cache 5.1.1 - ISC +https://github.com/isaacs/node-lru-cache#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43343,17 +43343,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -lru-cache 6.0.0 - ISC -https://github.com/isaacs/node-lru-cache#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +lru-cache 6.0.0 - ISC +https://github.com/isaacs/node-lru-cache#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43369,17 +43369,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -minimalistic-assert 1.0.1 - ISC -https://github.com/calvinmetcalf/minimalistic-assert - -Copyright 2015 Calvin Metcalf - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +minimalistic-assert 1.0.1 - ISC +https://github.com/calvinmetcalf/minimalistic-assert + +Copyright 2015 Calvin Metcalf + Copyright 2015 Calvin Metcalf Permission to use, copy, modify, and/or distribute this software for any purpose @@ -43392,17 +43392,17 @@ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -minimatch 3.1.2 - ISC -https://github.com/isaacs/minimatch#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - +PERFORMANCE OF THIS SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +minimatch 3.1.2 - ISC +https://github.com/isaacs/minimatch#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43418,17 +43418,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -once 1.4.0 - ISC -https://github.com/isaacs/once#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +once 1.4.0 - ISC +https://github.com/isaacs/once#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43444,17 +43444,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -parse-numeric-range 1.3.0 - ISC -https://github.com/euank/node-parse-numeric-range - -Copyright (c) 2014, Euank - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +parse-numeric-range 1.3.0 - ISC +https://github.com/euank/node-parse-numeric-range + +Copyright (c) 2014, Euank + Copyright (c) 2014, Euank Permission to use, copy, modify, and/or distribute this software for any @@ -43468,17 +43468,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -picocolors 1.0.0 - ISC -https://github.com/alexeyraspopov/picocolors#readme - -Copyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +picocolors 1.0.0 - ISC +https://github.com/alexeyraspopov/picocolors#readme + +Copyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov + ISC License Copyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov @@ -43494,33 +43494,33 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-modules-extract-imports 3.0.0 - ISC -https://github.com/css-modules/postcss-modules-extract-imports - -Copyright 2015 Glen Maddern - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-modules-extract-imports 3.0.0 - ISC +https://github.com/css-modules/postcss-modules-extract-imports + +Copyright 2015 Glen Maddern + Copyright 2015 Glen Maddern Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-modules-scope 3.1.0 - ISC -https://github.com/css-modules/postcss-modules-scope - -Copyright (c) 2015, Glen Maddern - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-modules-scope 3.1.0 - ISC +https://github.com/css-modules/postcss-modules-scope + +Copyright (c) 2015, Glen Maddern + ISC License (ISC) Copyright (c) 2015, Glen Maddern @@ -43528,34 +43528,34 @@ Copyright (c) 2015, Glen Maddern Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-modules-values 4.0.0 - ISC -https://github.com/css-modules/postcss-modules-values#readme - -Copyright (c) 2015, Glen Maddern - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-modules-values 4.0.0 - ISC +https://github.com/css-modules/postcss-modules-values#readme + +Copyright (c) 2015, Glen Maddern + ISC License (ISC) Copyright (c) 2015, Glen Maddern Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -proto-list 1.2.4 - ISC -https://github.com/isaacs/proto-list#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +proto-list 1.2.4 - ISC +https://github.com/isaacs/proto-list#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43571,17 +43571,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -rimraf 3.0.2 - ISC -https://github.com/isaacs/rimraf#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +rimraf 3.0.2 - ISC +https://github.com/isaacs/rimraf#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43597,18 +43597,18 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -sax 1.3.0 - ISC -https://github.com/isaacs/sax-js#readme - -Copyright (c) 2010-2022 Isaac Z. Schlueter and Contributors -Copyright (c) 2010-2022 Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +sax 1.3.0 - ISC +https://github.com/isaacs/sax-js#readme + +Copyright (c) 2010-2022 Isaac Z. Schlueter and Contributors +Copyright (c) 2010-2022 Mathias Bynens + The ISC License Copyright (c) 2010-2022 Isaac Z. Schlueter and Contributors @@ -43650,19 +43650,19 @@ Copyright (c) 2010-2022 Mathias Bynens 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -semver 6.3.1 - ISC -https://github.com/npm/node-semver#readme - -Copyright Isaac Z. -Copyright Isaac Z. Schlueter -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +semver 6.3.1 - ISC +https://github.com/npm/node-semver#readme + +Copyright Isaac Z. +Copyright Isaac Z. Schlueter +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43678,18 +43678,18 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -semver 7.5.4 - ISC -https://github.com/npm/node-semver#readme - -Copyright Isaac Z. Schlueter -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +semver 7.5.4 - ISC +https://github.com/npm/node-semver#readme + +Copyright Isaac Z. Schlueter +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43705,17 +43705,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -setprototypeof 1.2.0 - ISC -https://github.com/wesleytodd/setprototypeof - -Copyright (c) 2015, Wes Todd - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +setprototypeof 1.2.0 - ISC +https://github.com/wesleytodd/setprototypeof + +Copyright (c) 2015, Wes Todd + Copyright (c) 2015, Wes Todd Permission to use, copy, modify, and/or distribute this software for any @@ -43729,17 +43729,17 @@ SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -signal-exit 3.0.7 - ISC -https://github.com/tapjs/signal-exit - -Copyright (c) 2015, Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +signal-exit 3.0.7 - ISC +https://github.com/tapjs/signal-exit + +Copyright (c) 2015, Contributors + The ISC License Copyright (c) 2015, Contributors @@ -43756,17 +43756,17 @@ LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -which 1.3.1 - ISC -https://github.com/isaacs/node-which#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +which 1.3.1 - ISC +https://github.com/isaacs/node-which#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43782,17 +43782,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -which 2.0.2 - ISC -https://github.com/isaacs/node-which#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +which 2.0.2 - ISC +https://github.com/isaacs/node-which#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43808,17 +43808,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -wrappy 1.0.2 - ISC -https://github.com/npm/wrappy - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +wrappy 1.0.2 - ISC +https://github.com/npm/wrappy + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43834,34 +43834,34 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -write-file-atomic 3.0.3 - ISC -https://github.com/npm/write-file-atomic - -Copyright (c) 2015, Rebecca Turner - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +write-file-atomic 3.0.3 - ISC +https://github.com/npm/write-file-atomic + +Copyright (c) 2015, Rebecca Turner + Copyright (c) 2015, Rebecca Turner Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -yallist 3.1.1 - ISC -https://github.com/isaacs/yallist#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +yallist 3.1.1 - ISC +https://github.com/isaacs/yallist#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43877,17 +43877,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -yaml 1.10.2 - ISC -https://eemeli.org/yaml/v1/ - -Copyright 2018 Eemeli Aro - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +yaml 1.10.2 - ISC +https://eemeli.org/yaml/v1/ + +Copyright 2018 Eemeli Aro + Copyright 2018 Eemeli Aro Permission to use, copy, modify, and/or distribute this software for any purpose @@ -43901,17 +43901,17 @@ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/autocomplete-core 1.9.3 - MIT -https://github.com/algolia/autocomplete - -(c) Algolia, Inc. and contributors https://github.com/algolia/autocomplete - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/autocomplete-core 1.9.3 - MIT +https://github.com/algolia/autocomplete + +(c) Algolia, Inc. and contributors https://github.com/algolia/autocomplete + MIT License Copyright (c) @@ -43920,17 +43920,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/autocomplete-plugin-algolia-insights 1.9.3 - MIT -https://github.com/algolia/autocomplete - -(c) Algolia, Inc. and contributors https://github.com/algolia/autocomplete - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/autocomplete-plugin-algolia-insights 1.9.3 - MIT +https://github.com/algolia/autocomplete + +(c) Algolia, Inc. and contributors https://github.com/algolia/autocomplete + MIT License Copyright (c) @@ -43939,17 +43939,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/autocomplete-preset-algolia 1.9.3 - MIT -https://github.com/algolia/autocomplete - -(c) Algolia, Inc. and contributors https://github.com/algolia/autocomplete - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/autocomplete-preset-algolia 1.9.3 - MIT +https://github.com/algolia/autocomplete + +(c) Algolia, Inc. and contributors https://github.com/algolia/autocomplete + MIT License Copyright (c) @@ -43958,16 +43958,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/autocomplete-shared 1.9.3 - MIT -https://github.com/algolia/autocomplete - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/autocomplete-shared 1.9.3 - MIT +https://github.com/algolia/autocomplete + + MIT License Copyright (c) @@ -43976,16 +43976,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/cache-browser-local-storage 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/cache-browser-local-storage 4.22.0 - MIT + + + MIT License Copyright (c) @@ -43994,16 +43994,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/cache-common 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/cache-common 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44012,16 +44012,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/cache-in-memory 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/cache-in-memory 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44030,16 +44030,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/client-account 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/client-account 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44048,16 +44048,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/client-analytics 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/client-analytics 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44066,16 +44066,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/client-common 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/client-common 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44084,16 +44084,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/client-personalization 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/client-personalization 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44102,16 +44102,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/client-search 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/client-search 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44120,17 +44120,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/events 4.0.1 - MIT -https://github.com/algolia/events#readme - -Copyright Joyent, Inc. and other Node contributors - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/events 4.0.1 - MIT +https://github.com/algolia/events#readme + +Copyright Joyent, Inc. and other Node contributors + MIT Copyright Joyent, Inc. and other Node contributors. @@ -44153,16 +44153,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/logger-common 4.22.0 - MIT - - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/logger-common 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44171,16 +44171,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/logger-console 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/logger-console 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44189,16 +44189,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/requester-browser-xhr 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/requester-browser-xhr 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44207,16 +44207,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/requester-common 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/requester-common 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44225,16 +44225,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/requester-node-http 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/requester-node-http 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44243,16 +44243,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/transporter 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/transporter 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44261,17 +44261,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/code-frame 7.23.5 - MIT -https://babel.dev/docs/en/next/babel-code-frame - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/code-frame 7.23.5 - MIT +https://babel.dev/docs/en/next/babel-code-frame + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44294,17 +44294,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/compat-data 7.23.5 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/compat-data 7.23.5 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44327,19 +44327,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/core 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-core - -Copyright (c) 2021 Titus Wormer -Copyright Joyent, Inc. and other Node contributors -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/core 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-core + +Copyright (c) 2021 Titus Wormer +Copyright Joyent, Inc. and other Node contributors +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44362,17 +44362,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/generator 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-generator - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/generator 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-generator + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44395,17 +44395,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-annotate-as-pure 7.22.5 - MIT -https://babel.dev/docs/en/next/babel-helper-annotate-as-pure - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-annotate-as-pure 7.22.5 - MIT +https://babel.dev/docs/en/next/babel-helper-annotate-as-pure + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44428,17 +44428,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-builder-binary-assignment-operator-visitor 7.22.15 - MIT -https://babel.dev/docs/en/next/babel-helper-builder-binary-assignment-operator-visitor - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-builder-binary-assignment-operator-visitor 7.22.15 - MIT +https://babel.dev/docs/en/next/babel-helper-builder-binary-assignment-operator-visitor + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44461,17 +44461,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-compilation-targets 7.23.6 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-compilation-targets 7.23.6 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44494,17 +44494,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-create-class-features-plugin 7.23.6 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-create-class-features-plugin 7.23.6 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44527,17 +44527,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-create-regexp-features-plugin 7.22.15 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-create-regexp-features-plugin 7.22.15 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44560,17 +44560,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-define-polyfill-provider 0.4.4 - MIT -https://github.com/babel/babel-polyfills#readme - -Copyright (c) 2014-present Nicolo Ribaudo and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-define-polyfill-provider 0.4.4 - MIT +https://github.com/babel/babel-polyfills#readme + +Copyright (c) 2014-present Nicolo Ribaudo and other contributors + MIT License Copyright (c) 2014-present Nicolò Ribaudo and other contributors @@ -44593,17 +44593,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-environment-visitor 7.22.20 - MIT -https://babel.dev/docs/en/next/babel-helper-environment-visitor - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-environment-visitor 7.22.20 - MIT +https://babel.dev/docs/en/next/babel-helper-environment-visitor + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44626,17 +44626,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-function-name 7.23.0 - MIT -https://babel.dev/docs/en/next/babel-helper-function-name - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-function-name 7.23.0 - MIT +https://babel.dev/docs/en/next/babel-helper-function-name + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44659,17 +44659,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-hoist-variables 7.22.5 - MIT -https://babel.dev/docs/en/next/babel-helper-hoist-variables - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-hoist-variables 7.22.5 - MIT +https://babel.dev/docs/en/next/babel-helper-hoist-variables + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44692,17 +44692,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-member-expression-to-functions 7.23.0 - MIT -https://babel.dev/docs/en/next/babel-helper-member-expression-to-functions - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-member-expression-to-functions 7.23.0 - MIT +https://babel.dev/docs/en/next/babel-helper-member-expression-to-functions + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44725,17 +44725,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-module-imports 7.22.15 - MIT -https://babel.dev/docs/en/next/babel-helper-module-imports - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-module-imports 7.22.15 - MIT +https://babel.dev/docs/en/next/babel-helper-module-imports + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44758,17 +44758,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-module-transforms 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-helper-module-transforms - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-module-transforms 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-helper-module-transforms + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44791,17 +44791,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-optimise-call-expression 7.22.5 - MIT -https://babel.dev/docs/en/next/babel-helper-optimise-call-expression - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-optimise-call-expression 7.22.5 - MIT +https://babel.dev/docs/en/next/babel-helper-optimise-call-expression + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44824,17 +44824,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-plugin-utils 7.22.5 - MIT -https://babel.dev/docs/en/next/babel-helper-plugin-utils - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-plugin-utils 7.22.5 - MIT +https://babel.dev/docs/en/next/babel-helper-plugin-utils + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44857,17 +44857,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-remap-async-to-generator 7.22.20 - MIT -https://babel.dev/docs/en/next/babel-helper-remap-async-to-generator - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-remap-async-to-generator 7.22.20 - MIT +https://babel.dev/docs/en/next/babel-helper-remap-async-to-generator + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44890,17 +44890,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-replace-supers 7.22.20 - MIT -https://babel.dev/docs/en/next/babel-helper-replace-supers - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-replace-supers 7.22.20 - MIT +https://babel.dev/docs/en/next/babel-helper-replace-supers + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44923,18 +44923,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helpers 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-helpers - -Copyright (c) 2014-present, Facebook, Inc. -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helpers 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-helpers + +Copyright (c) 2014-present, Facebook, Inc. +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44957,17 +44957,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-simple-access 7.22.5 - MIT -https://babel.dev/docs/en/next/babel-helper-simple-access - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-simple-access 7.22.5 - MIT +https://babel.dev/docs/en/next/babel-helper-simple-access + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44990,17 +44990,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-skip-transparent-expression-wrappers 7.22.5 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-skip-transparent-expression-wrappers 7.22.5 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45023,17 +45023,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-split-export-declaration 7.22.6 - MIT -https://babel.dev/docs/en/next/babel-helper-split-export-declaration - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-split-export-declaration 7.22.6 - MIT +https://babel.dev/docs/en/next/babel-helper-split-export-declaration + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45056,17 +45056,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-string-parser 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-helper-string-parser - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-string-parser 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-helper-string-parser + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45089,17 +45089,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-validator-identifier 7.22.20 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-validator-identifier 7.22.20 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45122,17 +45122,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-validator-option 7.23.5 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-validator-option 7.23.5 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45155,17 +45155,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-wrap-function 7.22.20 - MIT -https://babel.dev/docs/en/next/babel-helper-wrap-function - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-wrap-function 7.22.20 - MIT +https://babel.dev/docs/en/next/babel-helper-wrap-function + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45188,17 +45188,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/highlight 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-highlight - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/highlight 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-highlight + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45221,17 +45221,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/parser 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-parser - -Copyright (c) 2012-2014 by various contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/parser 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-parser + +Copyright (c) 2012-2014 by various contributors + Copyright (C) 2012-2014 by various contributors (see AUTHORS) Permission is hereby granted, free of charge, to any person obtaining a copy @@ -45251,50 +45251,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- + +@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression + +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45317,50 +45284,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-bugfix-v8-static-class-fields-redefine-readonly - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- + +@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining + +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-proposal-private-property-in-object 7.21.0-placeholder-for-preset-env.2 - MIT -https://babel.dev/docs/en/next/babel-plugin-proposal-private-property-in-object - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45383,50 +45317,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-async-generators 7.8.4 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- + +@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-bugfix-v8-static-class-fields-redefine-readonly + +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-class-properties 7.12.13 - MIT -https://babel.dev/docs/en/next/babel-plugin-syntax-class-properties - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45449,50 +45350,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-class-static-block 7.14.5 - MIT -https://babel.dev/docs/en/next/babel-plugin-syntax-class-static-block - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- + +@babel/plugin-proposal-private-property-in-object 7.21.0-placeholder-for-preset-env.2 - MIT +https://babel.dev/docs/en/next/babel-plugin-proposal-private-property-in-object + +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-dynamic-import 7.8.3 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45515,50 +45383,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-export-namespace-from 7.8.3 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- + +@babel/plugin-syntax-async-generators 7.8.4 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-import-assertions 7.23.3 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45581,17 +45416,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-import-attributes 7.23.3 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-class-properties 7.12.13 - MIT +https://babel.dev/docs/en/next/babel-plugin-syntax-class-properties + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45614,17 +45449,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-import-meta 7.10.4 - MIT -https://github.com/babel/babel#readme - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-class-static-block 7.14.5 - MIT +https://babel.dev/docs/en/next/babel-plugin-syntax-class-static-block + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45647,17 +45482,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-json-strings 7.8.3 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-dynamic-import 7.8.3 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45680,50 +45515,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-jsx 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-syntax-jsx - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- + +@babel/plugin-syntax-export-namespace-from 7.8.3 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-logical-assignment-operators 7.10.4 - MIT -https://github.com/babel/babel#readme - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45746,50 +45548,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-nullish-coalescing-operator 7.8.3 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- + +@babel/plugin-syntax-import-assertions 7.23.3 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-numeric-separator 7.10.4 - MIT -https://github.com/babel/babel#readme - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45812,50 +45581,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-object-rest-spread 7.8.3 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- + +@babel/plugin-syntax-import-attributes 7.23.3 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-optional-catch-binding 7.8.3 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45878,50 +45614,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-optional-chaining 7.8.3 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- + +@babel/plugin-syntax-import-meta 7.10.4 - MIT +https://github.com/babel/babel#readme + +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-private-property-in-object 7.14.5 - MIT -https://babel.dev/docs/en/next/babel-plugin-syntax-private-property-in-object - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45944,17 +45647,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-top-level-await 7.14.5 - MIT -https://babel.dev/docs/en/next/babel-plugin-syntax-top-level-await - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-json-strings 7.8.3 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45977,17 +45680,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-typescript 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-syntax-typescript - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-jsx 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-syntax-jsx + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46010,17 +45713,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-unicode-sets-regex 7.18.6 - MIT -https://babel.dev/docs/en/next/babel-plugin-syntax-unicode-sets-regex - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-logical-assignment-operators 7.10.4 - MIT +https://github.com/babel/babel#readme + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46043,17 +45746,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-arrow-functions 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-arrow-functions - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-nullish-coalescing-operator 7.8.3 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46076,17 +45779,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-async-generator-functions 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-async-generator-functions - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-numeric-separator 7.10.4 - MIT +https://github.com/babel/babel#readme + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46109,17 +45812,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-async-to-generator 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-async-to-generator - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-object-rest-spread 7.8.3 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46142,17 +45845,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-block-scoped-functions 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-block-scoped-functions - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-optional-catch-binding 7.8.3 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46175,17 +45878,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-block-scoping 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-block-scoping - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-optional-chaining 7.8.3 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46208,17 +45911,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-classes 7.23.5 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-classes - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-private-property-in-object 7.14.5 - MIT +https://babel.dev/docs/en/next/babel-plugin-syntax-private-property-in-object + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46241,17 +45944,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-class-properties 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-class-properties - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-top-level-await 7.14.5 - MIT +https://babel.dev/docs/en/next/babel-plugin-syntax-top-level-await + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46274,17 +45977,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-class-static-block 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-class-static-block - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-typescript 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-syntax-typescript + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46307,17 +46010,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-computed-properties 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-computed-properties - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-unicode-sets-regex 7.18.6 - MIT +https://babel.dev/docs/en/next/babel-plugin-syntax-unicode-sets-regex + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46340,17 +46043,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-destructuring 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-destructuring - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-arrow-functions 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-arrow-functions + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46373,17 +46076,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-dotall-regex 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-dotall-regex - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-async-generator-functions 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-async-generator-functions + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46406,17 +46109,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-duplicate-keys 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-duplicate-keys - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-async-to-generator 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-async-to-generator + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46439,17 +46142,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-dynamic-import 7.23.4 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-block-scoped-functions 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-block-scoped-functions + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46472,17 +46175,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-exponentiation-operator 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-exponentiation-operator - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-block-scoping 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-block-scoping + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46505,17 +46208,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-export-namespace-from 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-export-namespace-from - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-classes 7.23.5 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-classes + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46538,17 +46241,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-for-of 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-for-of - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-class-properties 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-class-properties + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46571,17 +46274,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-function-name 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-function-name - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-class-static-block 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-class-static-block + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46604,17 +46307,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-json-strings 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-json-strings - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-computed-properties 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-computed-properties + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46637,17 +46340,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-literals 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-literals - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-destructuring 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-destructuring + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46670,17 +46373,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-logical-assignment-operators 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-logical-assignment-operators - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-dotall-regex 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-dotall-regex + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46703,17 +46406,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-member-expression-literals 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-member-expression-literals - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-duplicate-keys 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-duplicate-keys + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46736,50 +46439,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-modules-amd 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-modules-amd - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- + +@babel/plugin-transform-dynamic-import 7.23.4 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-modules-commonjs 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-modules-commonjs - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46802,50 +46472,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-modules-systemjs 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-modules-systemjs - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- + +@babel/plugin-transform-exponentiation-operator 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-exponentiation-operator + +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-modules-umd 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-modules-umd - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46868,50 +46505,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-named-capturing-groups-regex 7.22.5 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-named-capturing-groups-regex - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- + +@babel/plugin-transform-export-namespace-from 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-export-namespace-from + +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-new-target 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-new-target - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46934,50 +46538,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-nullish-coalescing-operator 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-nullish-coalescing-operator - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- + +@babel/plugin-transform-for-of 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-for-of + +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-numeric-separator 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-numeric-separator - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47000,50 +46571,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-object-rest-spread 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-object-rest-spread - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- + +@babel/plugin-transform-function-name 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-function-name + +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-object-super 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-object-super - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47066,17 +46604,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-optional-catch-binding 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-optional-catch-binding - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-json-strings 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-json-strings + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47099,17 +46637,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-optional-chaining 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-optional-chaining - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-literals 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-literals + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47132,17 +46670,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-parameters 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-parameters - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-logical-assignment-operators 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-logical-assignment-operators + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47165,17 +46703,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-private-methods 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-private-methods - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-member-expression-literals 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-member-expression-literals + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47198,17 +46736,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-private-property-in-object 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-private-property-in-object - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-modules-amd 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-modules-amd + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47231,17 +46769,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-property-literals 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-property-literals - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-modules-commonjs 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-modules-commonjs + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47264,17 +46802,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-react-constant-elements 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-react-constant-elements - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-modules-systemjs 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-modules-systemjs + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47297,17 +46835,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-react-display-name 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-react-display-name - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-modules-umd 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-modules-umd + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47330,17 +46868,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-react-jsx 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-react-jsx - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-named-capturing-groups-regex 7.22.5 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-named-capturing-groups-regex + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47363,17 +46901,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-react-jsx-development 7.22.5 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-new-target 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-new-target + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47396,17 +46934,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-react-pure-annotations 7.23.3 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-nullish-coalescing-operator 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-nullish-coalescing-operator + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47429,17 +46967,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-regenerator 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-regenerator - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-numeric-separator 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-numeric-separator + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47462,17 +47000,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-reserved-words 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-reserved-words - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-object-rest-spread 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-object-rest-spread + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47495,17 +47033,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-runtime 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-runtime - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-object-super 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-object-super + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47528,17 +47066,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-shorthand-properties 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-shorthand-properties - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-optional-catch-binding 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-optional-catch-binding + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47561,17 +47099,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-spread 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-spread - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-optional-chaining 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-optional-chaining + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47594,17 +47132,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-sticky-regex 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-sticky-regex - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-parameters 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-parameters + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47627,17 +47165,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-template-literals 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-template-literals - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-private-methods 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-private-methods + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47660,17 +47198,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-typeof-symbol 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-typeof-symbol - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-private-property-in-object 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-private-property-in-object + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47693,17 +47231,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-typescript 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-typescript - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-property-literals 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-property-literals + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47726,17 +47264,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-unicode-escapes 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-unicode-escapes - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-react-constant-elements 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-react-constant-elements + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47759,17 +47297,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-unicode-property-regex 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-unicode-property-regex - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-react-display-name 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-react-display-name + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47792,17 +47330,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-unicode-regex 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-unicode-regex - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-react-jsx 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-react-jsx + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47825,17 +47363,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-unicode-sets-regex 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-unicode-sets-regex - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-react-jsx-development 7.22.5 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47858,17 +47396,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/preset-env 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-preset-env - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-react-pure-annotations 7.23.3 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47891,49 +47429,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/preset-modules 0.1.6-no-external-plugins - MIT -https://github.com/babel/preset-modules#readme - -Copyright (c) 2020 Babel - -MIT License -Copyright (c) 2020 Babel -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +--------------------------------------------------------- + +@babel/plugin-transform-regenerator 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-regenerator + +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/preset-react 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-preset-react - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47956,17 +47462,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/preset-typescript 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-preset-typescript - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-reserved-words 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-reserved-words + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47989,20 +47495,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/regjsgen 0.8.0 - MIT -https://github.com/bnjmnt4n/regjsgen - -Copyright 2014-2020 Benjamin Tan - -The MIT License (MIT) -Copyright 2014-2020 Benjamin Tan + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-runtime 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-runtime + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the @@ -48022,18 +47528,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/runtime 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-runtime - -Copyright (c) 2014-present, Facebook, Inc. -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-shorthand-properties 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-shorthand-properties + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -48056,18 +47561,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/runtime-corejs3 7.23.6 - MIT - - -Copyright (c) 2014-present, Facebook, Inc. -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-spread 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-spread + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -48090,17 +47594,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/template 7.22.15 - MIT -https://babel.dev/docs/en/next/babel-template - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-sticky-regex 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-sticky-regex + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -48123,17 +47627,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/traverse 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-traverse - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-template-literals 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-template-literals + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -48156,17 +47660,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/types 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-types - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-typeof-symbol 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-typeof-symbol + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -48189,428 +47693,218 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@discoveryjs/json-ext 0.5.7 - MIT -https://github.com/discoveryjs/json-ext#readme - -Copyright (c) 2020 Roman Dvornov - -MIT License -Copyright (c) 2020 Roman Dvornov -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +--------------------------------------------------------- + +@babel/plugin-transform-typescript 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-typescript + +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docsearch/css 3.5.2 - MIT -https://docsearch.algolia.com/ - -(c) Algolia, Inc. and contributors https://docsearch.algolia.com - MIT License -Copyright (c) +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +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: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docsearch/react 3.5.2 - MIT -https://docsearch.algolia.com/ - -(c) Algolia, Inc. and contributors https://docsearch.algolia.com - -MIT License +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. -Copyright (c) -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +--------------------------------------------------------- + +@babel/plugin-transform-unicode-escapes 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-unicode-escapes + +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/core 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) 2015 John Agan -Copyright (c) Facebook, Inc. and its affiliates - MIT License -Copyright (c) Facebook, Inc. and its affiliates. +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/cssnano-preset 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - -MIT License +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. -Copyright (c) Facebook, Inc. and its affiliates. -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +--------------------------------------------------------- + +@babel/plugin-transform-unicode-property-regex 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-unicode-property-regex + +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/logger 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - MIT License -Copyright (c) Facebook, Inc. and its affiliates. +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/mdx-loader 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) 2020 Elvis Wolcott -Copyright (c) Facebook, Inc. and its affiliates - -MIT License +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. -Copyright (c) Facebook, Inc. and its affiliates. -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +--------------------------------------------------------- -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. +@babel/plugin-transform-unicode-regex 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-unicode-regex +Copyright (c) 2014-present Sebastian McKenzie and other contributors MIT License -Copyright (c) 2020 Elvis Wolcott +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -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. +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. ---- -MIT License +--------------------------------------------------------- -Copyright (c) Facebook, Inc. and its affiliates. +--------------------------------------------------------- -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: +@babel/plugin-transform-unicode-sets-regex 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-unicode-sets-regex -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/module-type-aliases 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - MIT License -Copyright (c) Facebook, Inc. and its affiliates. +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/plugin-content-blog 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) 2023 Facebook, Inc. -Copyright (c) Facebook, Inc. and its affiliates - -MIT License +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. -Copyright (c) Facebook, Inc. and its affiliates. -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/plugin-content-docs 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - -MIT License +@babel/preset-env 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-preset-env -Copyright (c) Facebook, Inc. and its affiliates. +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +MIT License -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/plugin-content-pages 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - -MIT License +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: -Copyright (c) Facebook, Inc. and its affiliates. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -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: +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. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/plugin-debug 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - -MIT License +--------------------------------------------------------- -Copyright (c) Facebook, Inc. and its affiliates. +--------------------------------------------------------- -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: +@babel/preset-modules 0.1.6-no-external-plugins - MIT +https://github.com/babel/preset-modules#readme -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Copyright (c) 2020 Babel -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/plugin-google-analytics 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - MIT License -Copyright (c) Facebook, Inc. and its affiliates. +Copyright (c) 2020 Babel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48629,146 +47923,286 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/plugin-google-gtag 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - -MIT License -Copyright (c) Facebook, Inc. and its affiliates. -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/plugin-google-tag-manager 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - -MIT License +@babel/preset-react 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-preset-react -Copyright (c) Facebook, Inc. and its affiliates. +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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: +MIT License -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/plugin-sitemap 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - -MIT License +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: -Copyright (c) Facebook, Inc. and its affiliates. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -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: +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. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/preset-classic 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - -MIT License +--------------------------------------------------------- -Copyright (c) Facebook, Inc. and its affiliates. +--------------------------------------------------------- -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: +@babel/preset-typescript 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-preset-typescript -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Copyright (c) 2014-present Sebastian McKenzie and other contributors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/react-loadable 5.5.2 - MIT - - -Copyright (c) 2018-present Jamie Kyle - -Copyright (c) 2018-present Jamie Kyle +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/regjsgen 0.8.0 - MIT +https://github.com/bnjmnt4n/regjsgen + +Copyright 2014-2020 Benjamin Tan + +The MIT License (MIT) + +Copyright 2014-2020 Benjamin Tan + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/runtime 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-runtime + +Copyright (c) 2014-present, Facebook, Inc. +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/runtime-corejs3 7.23.6 - MIT + + +Copyright (c) 2014-present, Facebook, Inc. +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/template 7.22.15 - MIT +https://babel.dev/docs/en/next/babel-template + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/traverse 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-traverse + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/types 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-types + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@discoveryjs/json-ext 0.5.7 - MIT +https://github.com/discoveryjs/json-ext#readme + +Copyright (c) 2020 Roman Dvornov + +MIT License + +Copyright (c) 2020 Roman Dvornov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48787,18 +48221,56 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/theme-classic 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -copyright Props JSX.Element -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docsearch/css 3.5.2 - MIT +https://docsearch.algolia.com/ + +(c) Algolia, Inc. and contributors https://docsearch.algolia.com + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docsearch/react 3.5.2 - MIT +https://docsearch.algolia.com/ + +(c) Algolia, Inc. and contributors https://docsearch.algolia.com + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/core 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) 2015 John Agan +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -48820,17 +48292,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/theme-common 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/cssnano-preset 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -48852,17 +48324,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/theme-search-algolia 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/logger 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -48884,17 +48356,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/theme-translations 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/mdx-loader 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) 2020 Elvis Wolcott +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -48916,20 +48389,11 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/types 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - + + MIT License -Copyright (c) Facebook, Inc. and its affiliates. +Copyright (c) 2020 Elvis Wolcott Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48948,17 +48412,9 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/utils 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - + +--- + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -48980,17 +48436,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/utils-common 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/module-type-aliases 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -49012,17 +48468,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/utils-validation 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/plugin-content-blog 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) 2023 Facebook, Inc. +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -49044,20 +48501,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@jest/schemas 29.6.3 - MIT -https://github.com/jestjs/jest#readme - -Copyright (c) Meta Platforms, Inc. and affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/plugin-content-docs 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + MIT License -Copyright (c) Meta Platforms, Inc. and affiliates. +Copyright (c) Facebook, Inc. and its affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -49076,20 +48533,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@jest/types 29.6.3 - MIT -https://github.com/jestjs/jest#readme - -Copyright (c) Meta Platforms, Inc. and affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/plugin-content-pages 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + MIT License -Copyright (c) Meta Platforms, Inc. and affiliates. +Copyright (c) Facebook, Inc. and its affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -49108,18 +48565,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@jridgewell/gen-mapping 0.3.3 - MIT -https://github.com/jridgewell/gen-mapping#readme - -Copyright 2022 Justin Ridgewell - -Copyright 2022 Justin Ridgewell + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/plugin-debug 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -49128,8 +48587,8 @@ 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: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, @@ -49138,18 +48597,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@jridgewell/resolve-uri 3.1.1 - MIT -https://github.com/jridgewell/resolve-uri#readme - -Copyright 2019 Justin Ridgewell - -Copyright 2019 Justin Ridgewell + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/plugin-google-analytics 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -49158,8 +48619,8 @@ 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: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, @@ -49167,18 +48628,21 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@jridgewell/set-array 1.1.2 - MIT -https://github.com/jridgewell/set-array#readme - -Copyright 2022 Justin Ridgewell - -Copyright 2022 Justin Ridgewell +SOFTWARE. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/plugin-google-gtag 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -49187,8 +48651,8 @@ 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: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, @@ -49197,18 +48661,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@jridgewell/source-map 0.3.5 - MIT -https://github.com/jridgewell/source-map#readme - -Copyright 2019 Justin Ridgewell - -Copyright 2019 Justin Ridgewell + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/plugin-google-tag-manager 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -49217,8 +48683,8 @@ 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: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, @@ -49226,20 +48692,21 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@jridgewell/sourcemap-codec 1.4.15 - MIT -https://github.com/jridgewell/sourcemap-codec#readme - -Copyright (c) 2015 Rich Harris - -The MIT License +SOFTWARE. -Copyright (c) 2015 Rich Harris + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/plugin-sitemap 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -49248,28 +48715,30 @@ 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: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@jridgewell/trace-mapping 0.3.20 - MIT -https://github.com/jridgewell/trace-mapping#readme - -Copyright 2022 Justin Ridgewell - -Copyright 2022 Justin Ridgewell +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/preset-classic 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -49278,8 +48747,8 @@ 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: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, @@ -49288,20 +48757,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@leichtgewicht/ip-codec 2.0.4 - MIT -https://github.com/martinheidegger/ip-codec#readme - -Copyright (c) 2021 Martin Heidegger - -MIT License -Copyright (c) 2021 Martin Heidegger + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/react-loadable 5.5.2 - MIT + + +Copyright (c) 2018-present Jamie Kyle + +Copyright (c) 2018-present Jamie Kyle Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -49320,21 +48787,21 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@mdx-js/mdx 3.0.0 - MIT -https://mdxjs.com/ - -(c) Compositor and Vercel -Copyright (c) 2017 Compositor, Inc. and Vercel, Inc. - -The MIT License (MIT) -Copyright (c) 2017 Compositor, Inc. and Vercel, Inc. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/theme-classic 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +copyright Props JSX.Element +Copyright (c) Facebook, Inc. and its affiliates + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -49343,31 +48810,30 @@ 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: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@mdx-js/react 3.0.0 - MIT -https://mdxjs.com/ - -(c) Compositor and Vercel -Copyright (c) 2017 Compositor and Vercel, Inc. - -The MIT License (MIT) +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -Copyright (c) 2017 Compositor and Vercel, Inc. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/theme-common 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -49376,30 +48842,30 @@ 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: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@nodelib/fs.scandir 2.1.5 - MIT - - -Copyright (c) Denis Malinochkin - -The MIT License (MIT) +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -Copyright (c) Denis Malinochkin + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/theme-search-algolia 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -49418,20 +48884,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@nodelib/fs.stat 2.0.5 - MIT - - -Copyright (c) Denis Malinochkin - -The MIT License (MIT) -Copyright (c) Denis Malinochkin + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/theme-translations 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -49450,20 +48916,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@nodelib/fs.walk 1.2.8 - MIT - - -Copyright (c) Denis Malinochkin - -The MIT License (MIT) -Copyright (c) Denis Malinochkin + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/types 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -49482,189 +48948,84 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@pnpm/config.env-replace 1.1.0 - MIT -https://bit.cloud/pnpm/config/env-replace - - -MIT License - -Copyright (c) - -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: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@pnpm/network.ca-file 1.0.2 - MIT -https://bit.dev/pnpm/network/ca-file - - -MIT License +--------------------------------------------------------- -Copyright (c) +--------------------------------------------------------- -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: +@docusaurus/utils 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) Facebook, Inc. and its affiliates -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@pnpm/npm-conf 2.2.2 - MIT -https://github.com/pnpm/npm-conf#readme - -(c) Kevin Martensson (https://github.com/kevva) -Copyright (c) Kevin Martensson - MIT License -Copyright (c) Kevin Mårtensson (github.com/kevva) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) Facebook, Inc. and its affiliates. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@polka/url 1.0.0-next.24 - MIT -https://github.com/lukeed/polka#readme - -(c) Luke Edwards (https://lukeed.com) - -MIT License +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: -Copyright (c) +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -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: +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. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@sinclair/typebox 0.27.8 - MIT - - -Copyright (c) 2017-2023 Haydn Paterson - -TypeBox: JSON Schema Type Builder with Static Type Resolution for TypeScript - -The MIT License (MIT) - -Copyright (c) 2017-2023 Haydn Paterson (sinclair) - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@sindresorhus/is 4.6.0 - MIT -https://github.com/sindresorhus/is#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License +--------------------------------------------------------- -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +--------------------------------------------------------- -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: +@docusaurus/utils-common 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) Facebook, Inc. and its affiliates -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@sindresorhus/is 6.1.0 - MIT -https://github.com/sindresorhus/is#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Facebook, Inc. and its affiliates. -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: +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: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@slorber/remark-comment 1.0.0 - MIT -https://github.com/leebyron/remark-comment#readme - -Copyright 2021, Lee Byron - -MIT License +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. -Copyright 2021, Lee Byron -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@slorber/static-site-generator-webpack-plugin 4.0.7 - MIT -https://github.com/slorber/static-site-generator-webpack-plugin - -Copyright (c) 2015 Mark Dalgleish - -The MIT License (MIT) +@docusaurus/utils-validation 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme -Copyright (c) 2015 Mark Dalgleish +Copyright (c) Facebook, Inc. and its affiliates + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -49683,272 +49044,141 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/babel-plugin-add-jsx-attribute 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth - -Copyright 2017 Smooth Code -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: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/babel-plugin-remove-jsx-attribute 8.0.0 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth - -Copyright 2017 Smooth Code +--------------------------------------------------------- -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: +@jest/schemas 29.6.3 - MIT +https://github.com/jestjs/jest#readme -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) Meta Platforms, Inc. and affiliates -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/babel-plugin-remove-jsx-empty-expression 8.0.0 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth - -Copyright 2017 Smooth Code +MIT License -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: +Copyright (c) Meta Platforms, Inc. and affiliates. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/babel-plugin-replace-jsx-attribute-value 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth - -Copyright 2017 Smooth Code +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -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: +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. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/babel-plugin-svg-dynamic-title 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth - -Copyright 2017 Smooth Code +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +@jest/types 29.6.3 - MIT +https://github.com/jestjs/jest#readme -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/babel-plugin-svg-em-dimensions 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth - -Copyright 2017 Smooth Code +Copyright (c) Meta Platforms, Inc. and affiliates -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: +MIT License -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) Meta Platforms, Inc. and affiliates. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/babel-plugin-transform-react-native-svg 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth - -Copyright 2017 Smooth Code +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: -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: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/babel-plugin-transform-svg-component 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth - -Copyright 2017 Smooth Code -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/babel-preset 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth - -Copyright 2017 Smooth Code +@jridgewell/gen-mapping 0.3.3 - MIT +https://github.com/jridgewell/gen-mapping#readme -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: +Copyright 2022 Justin Ridgewell -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright 2022 Justin Ridgewell -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/core 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth - -Copyright 2017 Smooth Code +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: -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: +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/hast-util-to-babel-ast 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth - -Copyright 2017 Smooth Code -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/plugin-jsx 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth - -Copyright 2017 Smooth Code +@jridgewell/resolve-uri 3.1.1 - MIT +https://github.com/jridgewell/resolve-uri#readme -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: +Copyright 2019 Justin Ridgewell -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright 2019 Justin Ridgewell -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/plugin-svgo 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth - -Copyright 2017 Smooth Code +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: -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: +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/webpack 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth - -Copyright 2017 Smooth Code +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +@jridgewell/set-array 1.1.2 - MIT +https://github.com/jridgewell/set-array#readme -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@szmarczak/http-timer 5.0.1 - MIT -https://github.com/szmarczak/http-timer#readme - -Copyright (c) 2018 Szymon Marczak - -MIT License +Copyright 2022 Justin Ridgewell -Copyright (c) 2018 Szymon Marczak +Copyright 2022 Justin Ridgewell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -49957,8 +49187,8 @@ 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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, @@ -49967,473 +49197,301 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/acorn 4.0.6 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/acorn - -Copyright (c) Microsoft Corporation. - -MIT License -Copyright (c) -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/body-parser 1.19.5 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/body-parser - -Copyright (c) Microsoft Corporation - -MIT License +@jridgewell/source-map 0.3.5 - MIT +https://github.com/jridgewell/source-map#readme -Copyright (c) +Copyright 2019 Justin Ridgewell -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: +Copyright 2019 Justin Ridgewell -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/bonjour 3.5.13 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/bonjour - -Copyright (c) Microsoft Corporation - -MIT License +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -Copyright (c) +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. -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/connect 3.4.38 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/connect - -Copyright (c) Microsoft Corporation - -MIT License +@jridgewell/sourcemap-codec 1.4.15 - MIT +https://github.com/jridgewell/sourcemap-codec#readme -Copyright (c) +Copyright (c) 2015 Rich Harris -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: +The MIT License -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) 2015 Rich Harris -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/connect-history-api-fallback 1.5.4 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/connect-history-api-fallback - -Copyright (c) Microsoft Corporation - -MIT License +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: -Copyright (c) +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -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: +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. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/debug 4.1.12 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/debug - -Copyright (c) Microsoft Corporation - -MIT License +--------------------------------------------------------- -Copyright (c) +--------------------------------------------------------- -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: +@jridgewell/trace-mapping 0.3.20 - MIT +https://github.com/jridgewell/trace-mapping#readme -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright 2022 Justin Ridgewell -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/eslint 8.56.0 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint - -Copyright (c) Microsoft Corporation - -MIT License +Copyright 2022 Justin Ridgewell -Copyright (c) +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: -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: +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/eslint-scope 3.7.7 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint-scope - -Copyright (c) Microsoft Corporation - -MIT License -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +@leichtgewicht/ip-codec 2.0.4 - MIT +https://github.com/martinheidegger/ip-codec#readme -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/estree 1.0.5 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/estree - -Copyright (c) Microsoft Corporation - -MIT License +Copyright (c) 2021 Martin Heidegger -Copyright (c) +MIT License -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: +Copyright (c) 2021 Martin Heidegger -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/estree-jsx 1.0.3 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/estree-jsx - -Copyright (c) Microsoft Corporation - -MIT License +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -Copyright (c) +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. -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: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/express 4.17.21 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express - -Copyright (c) Microsoft Corporation - -MIT License +--------------------------------------------------------- -Copyright (c) +@mdx-js/mdx 3.0.0 - MIT +https://mdxjs.com/ -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: +(c) Compositor and Vercel +Copyright (c) 2017 Compositor, Inc. and Vercel, Inc. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +The MIT License (MIT) -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/express-serve-static-core 4.17.41 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express-serve-static-core - -Copyright (c) Microsoft Corporation - -MIT License +Copyright (c) 2017 Compositor, Inc. and Vercel, Inc. -Copyright (c) +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: -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: +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/gtag.js 0.0.12 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gtag.js - -Copyright (c) Microsoft Corporation - -MIT License -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +@mdx-js/react 3.0.0 - MIT +https://mdxjs.com/ -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/hast 3.0.3 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/hast - -Copyright (c) Microsoft Corporation - -MIT License +(c) Compositor and Vercel +Copyright (c) 2017 Compositor and Vercel, Inc. -Copyright (c) +The MIT License (MIT) -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: +Copyright (c) 2017 Compositor and Vercel, Inc. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/history 4.7.11 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/history - -Copyright (c) Microsoft Corporation - -MIT License +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -Copyright (c) +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. -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: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/html-minifier-terser 6.1.0 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/html-minifier-terser - -Copyright (c) Microsoft Corporation - -MIT License +--------------------------------------------------------- -Copyright (c) +@nodelib/fs.scandir 2.1.5 - MIT -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: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) Denis Malinochkin -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/http-cache-semantics 4.0.4 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/http-cache-semantics - -Copyright (c) Microsoft Corporation - -MIT License +The MIT License (MIT) -Copyright (c) +Copyright (c) Denis Malinochkin -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: +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: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/http-errors 2.0.4 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/http-errors - -Copyright (c) Microsoft Corporation - -MIT License +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. -Copyright (c) -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/http-proxy 1.17.14 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/http-proxy - -Copyright (c) Microsoft Corporation - -MIT License +@nodelib/fs.stat 2.0.5 - MIT -Copyright (c) -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: +Copyright (c) Denis Malinochkin -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +The MIT License (MIT) -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/istanbul-lib-coverage 2.0.6 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/istanbul-lib-coverage - -Copyright (c) Microsoft Corporation - -MIT License +Copyright (c) Denis Malinochkin -Copyright (c) +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: -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: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/istanbul-lib-report 3.0.3 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/istanbul-lib-report - -Copyright (c) Microsoft Corporation - -MIT License -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +@nodelib/fs.walk 1.2.8 - MIT -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/istanbul-reports 3.0.4 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/istanbul-reports - -Copyright (c) Microsoft Corporation - -MIT License -Copyright (c) +Copyright (c) Denis Malinochkin -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: +The MIT License (MIT) -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) Denis Malinochkin -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/json-schema 7.0.15 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-schema - -Copyright (c) Microsoft Corporation - -MIT License +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: -Copyright (c) +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -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: +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. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/mdast 4.0.3 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mdast - -Copyright (c) Microsoft Corporation - -MIT License +--------------------------------------------------------- -Copyright (c) +--------------------------------------------------------- -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: +@pnpm/config.env-replace 1.1.0 - MIT +https://bit.cloud/pnpm/config/env-replace -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/mdx 2.0.10 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mdx - -Copyright (c) Microsoft Corporation - MIT License Copyright (c) @@ -50442,36 +49500,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/mime 1.3.5 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mime - -Copyright (c) Microsoft Corporation - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +@pnpm/network.ca-file 1.0.2 - MIT +https://bit.dev/pnpm/network/ca-file -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/ms 0.7.34 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ms - -Copyright (c) Microsoft Corporation - MIT License Copyright (c) @@ -50480,93 +49518,38 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/node 17.0.45 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node - -Copyright (c) Microsoft Corporation - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +@pnpm/npm-conf 2.2.2 - MIT +https://github.com/pnpm/npm-conf#readme + +(c) Kevin Martensson (https://github.com/kevva) +Copyright (c) Kevin Martensson -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/node 20.10.5 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node - -Copyright (c) Microsoft Corporation - MIT License -Copyright (c) +Copyright (c) Kevin Mårtensson (github.com/kevva) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/node-forge 1.3.10 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node-forge - -Copyright (c) Microsoft Corporation - -MIT License - -Copyright (c) - -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: +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. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/parse-json 4.0.2 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/parse-json - -Copyright (c) Microsoft Corporation - -MIT License +--------------------------------------------------------- -Copyright (c) +--------------------------------------------------------- -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: +@polka/url 1.0.0-next.24 - MIT +https://github.com/lukeed/polka#readme -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +(c) Luke Edwards (https://lukeed.com) -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/prismjs 1.26.3 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/prismjs - -Copyright (c) Microsoft Corporation - MIT License Copyright (c) @@ -50575,683 +49558,397 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/prop-types 15.7.11 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/prop-types - -Copyright (c) Microsoft Corporation - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +@sinclair/typebox 0.27.8 - MIT -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/qs 6.9.11 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/qs - -Copyright (c) Microsoft Corporation - -MIT License -Copyright (c) +Copyright (c) 2017-2023 Haydn Paterson -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: +TypeBox: JSON Schema Type Builder with Static Type Resolution for TypeScript -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +The MIT License (MIT) -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/range-parser 1.2.7 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/range-parser - -Copyright (c) Microsoft Corporation - -MIT License +Copyright (c) 2017-2023 Haydn Paterson (sinclair) -Copyright (c) +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: -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: +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/react 18.2.45 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react - -Copyright (c) Microsoft Corporation - -MIT License +--------------------------------------------------------- -Copyright (c) +--------------------------------------------------------- -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: +@sindresorhus/is 4.6.0 - MIT +https://github.com/sindresorhus/is#readme -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) Sindre Sorhus (https://sindresorhus.com) -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/react-router 5.1.20 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router - -Copyright (c) Microsoft Corporation - MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/react-router-config 5.0.11 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router-config - -Copyright (c) Microsoft Corporation - -MIT License - -Copyright (c) - -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: +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. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/react-router-dom 5.3.3 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router-dom - -Copyright (c) Microsoft Corporation - -MIT License +--------------------------------------------------------- -Copyright (c) +--------------------------------------------------------- -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: +@sindresorhus/is 6.1.0 - MIT +https://github.com/sindresorhus/is#readme -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) Sindre Sorhus (https://sindresorhus.com) -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/retry 0.12.0 - MIT - - -Copyright (c) Microsoft Corporation - MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/sax 1.2.7 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sax - -Copyright (c) Microsoft Corporation - -MIT License - -Copyright (c) - -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: +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. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/scheduler 0.16.8 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/scheduler - -Copyright (c) Microsoft Corporation - -MIT License +--------------------------------------------------------- -Copyright (c) +--------------------------------------------------------- -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: +@slorber/remark-comment 1.0.0 - MIT +https://github.com/leebyron/remark-comment#readme -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright 2021, Lee Byron -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/send 0.17.4 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/send - -Copyright (c) Microsoft Corporation - MIT License -Copyright (c) +Copyright 2021, Lee Byron 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/serve-index 1.9.4 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/serve-index - -Copyright (c) Microsoft Corporation - -MIT License +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. -Copyright (c) -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/serve-static 1.15.5 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/serve-static - -Copyright (c) Microsoft Corporation - -MIT License +@slorber/static-site-generator-webpack-plugin 4.0.7 - MIT +https://github.com/slorber/static-site-generator-webpack-plugin -Copyright (c) +Copyright (c) 2015 Mark Dalgleish -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: +The MIT License (MIT) -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) 2015 Mark Dalgleish -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/sockjs 0.3.36 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sockjs - -Copyright (c) Microsoft Corporation - -MIT License +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: -Copyright (c) +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -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: +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. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/unist 2.0.10 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/unist - -Copyright (c) Microsoft Corporation - -MIT License +--------------------------------------------------------- -Copyright (c) +--------------------------------------------------------- + +@svgr/babel-plugin-add-jsx-attribute 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/unist 3.0.2 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/unist - -Copyright (c) Microsoft Corporation - -MIT License +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. -Copyright (c) -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/ws 8.5.10 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ws - -Copyright (c) Microsoft Corporation - -MIT License +@svgr/babel-plugin-remove-jsx-attribute 8.0.0 - MIT +https://react-svgr.com/ -Copyright (c) +Copyright 2017 Smooth + +Copyright 2017 Smooth Code 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/yargs 17.0.32 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/yargs - -Copyright (c) Microsoft Corporation - -MIT License +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. -Copyright (c) -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/yargs-parser 21.0.3 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/yargs-parser - -Copyright (c) Microsoft Corporation - -MIT License +@svgr/babel-plugin-remove-jsx-empty-expression 8.0.0 - MIT +https://react-svgr.com/ -Copyright (c) +Copyright 2017 Smooth + +Copyright 2017 Smooth Code 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/ast 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme - - -MIT License +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. -Copyright (c) -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/floating-point-hex-parser 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme - -Copyright (c) 2017 Mauro Bringolf - -MIT License - -Copyright (c) 2017 Mauro Bringolf - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/helper-api-error 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme - - -MIT License +@svgr/babel-plugin-replace-jsx-attribute-value 6.5.1 - MIT +https://react-svgr.com/ -Copyright (c) +Copyright 2017 Smooth + +Copyright 2017 Smooth Code 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/helper-buffer 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme - - -MIT License +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. -Copyright (c) -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/helper-numbers 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme - - -MIT License +@svgr/babel-plugin-svg-dynamic-title 6.5.1 - MIT +https://react-svgr.com/ -Copyright (c) +Copyright 2017 Smooth + +Copyright 2017 Smooth Code 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/helper-wasm-bytecode 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme - - -MIT License +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. -Copyright (c) + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/babel-plugin-svg-em-dimensions 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/helper-wasm-section 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme - - -MIT License +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. -Copyright (c) + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/babel-plugin-transform-react-native-svg 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/ieee754 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme - - -MIT License +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. -Copyright (c) + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/babel-plugin-transform-svg-component 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/utf8 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme - - -MIT License +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. -Copyright (c) + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/babel-preset 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/wasm-edit 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme - - -MIT License +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. -Copyright (c) + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/core 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/wasm-gen 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme - - -MIT License +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. -Copyright (c) + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/hast-util-to-babel-ast 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/wasm-opt 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme - - -MIT License +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. -Copyright (c) + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/plugin-jsx 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/wasm-parser 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme - - -MIT License +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. -Copyright (c) + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/plugin-svgo 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/wast-printer 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme - - -MIT License +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. -Copyright (c) + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/webpack 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -accepts 1.3.8 - MIT -https://github.com/jshttp/accepts#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2015 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2015 Douglas Christopher Wilson - -(The MIT License) +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. -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2015 Douglas Christopher Wilson -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- + +@szmarczak/http-timer 5.0.1 - MIT +https://github.com/szmarczak/http-timer#readme + +Copyright (c) 2018 Szymon Marczak -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -acorn 8.11.2 - MIT -https://github.com/acornjs/acorn - -Copyright (c) 2012-2022 by various contributors - MIT License -Copyright (C) 2012-2022 by various contributors (see AUTHORS) +Copyright (c) 2018 Szymon Marczak Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -51260,26 +49957,27 @@ 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: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -acorn-import-assertions 1.9.0 - MIT -https://github.com/xtuc/acorn-import-assertions#readme - - +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/acorn 4.0.6 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/acorn + +Copyright (c) Microsoft Corporation. + MIT License Copyright (c) @@ -51288,230 +49986,74 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -acorn-jsx 5.3.2 - MIT -https://github.com/acornjs/acorn-jsx - -Copyright (c) 2012-2017 by Ingvar Stepanyan - -Copyright (C) 2012-2017 by Ingvar Stepanyan +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. -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +--------------------------------------------------------- + +@types/body-parser 1.19.5 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/body-parser + +Copyright (c) Microsoft Corporation -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -acorn-walk 8.3.1 - MIT -https://github.com/acornjs/acorn - -Copyright (c) 2012-2020 by various contributors - MIT License -Copyright (C) 2012-2020 by various contributors (see AUTHORS) +Copyright (c) -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: +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: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -address 1.2.2 - MIT -https://github.com/node-modules/address#readme - -Copyright (c) 2013 - 2014 fengmk2 -Copyright (c) 2015 - present node-modules and other contributors - -This software is licensed under the MIT License. +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. -Copyright (C) 2013 - 2014 fengmk2 -Copyright (C) 2015 - present node-modules and other contributors. +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +@types/bonjour 3.5.13 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/bonjour + +Copyright (c) Microsoft Corporation -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -aggregate-error 3.1.0 - MIT -https://github.com/sindresorhus/aggregate-error#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - MIT License -Copyright (c) Sindre Sorhus (sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ajv 8.12.0 - MIT -https://ajv.js.org/ - -Copyright (c) 2015-2021 Evgeny Poberezkin - -The MIT License (MIT) -Copyright (c) 2015-2021 Evgeny Poberezkin +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +@types/connect 3.4.38 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/connect -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. +Copyright (c) Microsoft Corporation - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ajv-formats 2.1.1 - MIT -https://github.com/ajv-validator/ajv-formats#readme - -Copyright (c) 2020 Evgeny Poberezkin - MIT License -Copyright (c) 2020 Evgeny Poberezkin +Copyright (c) -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: +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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ajv-keywords 5.1.0 - MIT -https://github.com/epoberezkin/ajv-keywords#readme - -Copyright (c) 2016 Evgeny Poberezkin - -The MIT License (MIT) +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. -Copyright (c) 2016 Evgeny Poberezkin +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +@types/connect-history-api-fallback 1.5.4 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/connect-history-api-fallback + +Copyright (c) Microsoft Corporation -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -algoliasearch 4.22.0 - MIT - - -(c) Algolia, inc. https://github.com/algolia/algoliasearch-client-javascript - MIT License Copyright (c) @@ -51520,953 +50062,321 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -algoliasearch-helper 3.16.1 - MIT -https://community.algolia.com/algoliasearch-helper-js/ - -Copyright (c) 2015 Algolia -Copyright Joyent, Inc. and other Node contributors - -The MIT License (MIT) +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. -Copyright (c) 2015 Algolia +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +@types/debug 4.1.12 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/debug -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. +Copyright (c) Microsoft Corporation - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ansi-regex 5.0.1 - MIT -https://github.com/chalk/ansi-regex#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - MIT License -Copyright (c) Sindre Sorhus (sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ansi-styles 4.3.0 - MIT -https://github.com/chalk/ansi-styles#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/eslint 8.56.0 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint + +Copyright (c) Microsoft Corporation + MIT License -Copyright (c) Sindre Sorhus (sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ansi-styles 6.2.1 - MIT -https://github.com/chalk/ansi-styles#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/eslint-scope 3.7.7 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint-scope + +Copyright (c) Microsoft Corporation + MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -arg 5.0.2 - MIT -https://github.com/vercel/arg#readme - -Copyright (c) 2021 Vercel, Inc. - -The MIT License (MIT) -Copyright (c) 2021 Vercel, Inc. +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +@types/estree 1.0.5 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/estree -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -array-flatten 1.1.1 - MIT -https://github.com/blakeembrey/array-flatten - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - -The MIT License (MIT) +Copyright (c) Microsoft Corporation -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) +MIT License -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: +Copyright (c) -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +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: -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -array-flatten 2.1.2 - MIT -https://github.com/blakeembrey/array-flatten - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - -The MIT License (MIT) +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) +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. -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +--------------------------------------------------------- + +@types/estree-jsx 1.0.3 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/estree-jsx + +Copyright (c) Microsoft Corporation -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -array-union 2.1.0 - MIT -https://github.com/sindresorhus/array-union#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - MIT License -Copyright (c) Sindre Sorhus (sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -astring 1.8.6 - MIT -https://github.com/davidbonnet/astring#readme - -Copyright (c) 2015, David Bonnet - -Copyright (c) 2015, David Bonnet - -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: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -autoprefixer 10.4.16 - MIT -https://github.com/postcss/autoprefixer#readme - -Copyright 2013 Andrey Sitnik - -The MIT License (MIT) +--------------------------------------------------------- -Copyright 2013 Andrey Sitnik +@types/express 4.17.21 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express -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: +Copyright (c) Microsoft Corporation -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +MIT License -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -babel-loader 9.1.3 - MIT -https://github.com/babel/babel-loader - -Copyright (c) 2014-2019 Luis Couto - -Copyright (c) 2014-2019 Luís Couto +Copyright (c) -MIT License +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: -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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +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. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -babel-plugin-dynamic-import-node 2.3.3 - MIT -https://github.com/airbnb/babel-plugin-dynamic-import-node#readme - -Copyright (c) 2016 Airbnb - -MIT License +--------------------------------------------------------- -Copyright (c) 2016 Airbnb +--------------------------------------------------------- -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: +@types/express-serve-static-core 4.17.41 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express-serve-static-core -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Copyright (c) Microsoft Corporation -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -babel-plugin-polyfill-corejs2 0.4.7 - MIT -https://github.com/babel/babel-polyfills#readme - -Copyright (c) 2014-present Nicolo Ribaudo and other contributors - MIT License -Copyright (c) 2014-present Nicolò Ribaudo and other contributors +Copyright (c) -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: +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: -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -babel-plugin-polyfill-corejs3 0.8.7 - MIT -https://github.com/babel/babel-polyfills#readme - -Copyright (c) 2014-present Nicolo Ribaudo and other contributors - -MIT License +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. -Copyright (c) 2014-present Nicolò Ribaudo and other contributors +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +@types/gtag.js 0.0.12 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gtag.js + +Copyright (c) Microsoft Corporation -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -babel-plugin-polyfill-regenerator 0.5.4 - MIT -https://github.com/babel/babel-polyfills#readme - -Copyright (c) 2014-present Nicolo Ribaudo and other contributors - MIT License -Copyright (c) 2014-present Nicolò Ribaudo and other contributors +Copyright (c) -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: +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: -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -bail 2.0.2 - MIT -https://github.com/wooorm/bail#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - -(The MIT License) +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. -Copyright (c) 2015 Titus Wormer +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +@types/hast 3.0.3 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/hast -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -balanced-match 1.0.2 - MIT -https://github.com/juliangruber/balanced-match - -Copyright (c) 2013 Julian Gruber - -(MIT) +Copyright (c) Microsoft Corporation -Copyright (c) 2013 Julian Gruber <julian@juliangruber.com> +MIT License -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: +Copyright (c) -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +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: -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -batch 0.6.1 - MIT -https://github.com/visionmedia/batch#readme - -Copyright (c) 2013 TJ Holowaychuk - -(The MIT License) +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright (c) 2013 TJ Holowaychuk +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. -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- + +@types/history 4.7.11 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/history + +Copyright (c) Microsoft Corporation -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -big.js 5.2.2 - MIT -https://github.com/MikeMcl/big.js#readme - -Copyright (c) 2018 Michael Mclaughlin -Copyright (c) 2018 Michael Mclaughlin https://github.com/MikeMcl/big.js/LICENCE - -The MIT Licence (Expat). - -Copyright (c) 2018 Michael Mclaughlin - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - - ---------------------------------------------------------- - ---------------------------------------------------------- - -binary-extensions 2.2.0 - MIT -https://github.com/sindresorhus/binary-extensions#readme - -Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com) - MIT License -Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -body-parser 1.20.1 - MIT -https://github.com/expressjs/body-parser#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014-2015 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014-2015 Douglas Christopher Wilson - -(The MIT License) -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014-2015 Douglas Christopher Wilson +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +@types/html-minifier-terser 6.1.0 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/html-minifier-terser -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -bonjour-service 1.1.1 - MIT -https://github.com/onlxltd/bonjour-service - -(c) 2021 ON LX Limited -(c) 2015-2016 Thomas Watson Steen -Copyright (https://github.com/onlxltd/bonjour-service) - -The MIT License (MIT) +Copyright (c) Microsoft Corporation -Copyright (https://github.com/onlxltd/bonjour-service) (c) 2021 ON LX Limited +MIT License -Portions Copyright (Bonjour - https://github.com/watson/bonjour) (c) 2015-2016 Thomas Watson Steen +Copyright (c) -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: +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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/http-cache-semantics 4.0.4 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/http-cache-semantics + +Copyright (c) Microsoft Corporation -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -boxen 6.2.1 - MIT -https://github.com/sindresorhus/boxen#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -boxen 7.1.1 - MIT -https://github.com/sindresorhus/boxen#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/http-errors 2.0.4 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/http-errors + +Copyright (c) Microsoft Corporation + MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -brace-expansion 1.1.11 - MIT -https://github.com/juliangruber/brace-expansion - -Copyright (c) 2013 Julian Gruber - -MIT License -Copyright (c) 2013 Julian Gruber +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +@types/http-proxy 1.17.14 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/http-proxy -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -braces 3.0.2 - MIT -https://github.com/micromatch/braces - -Copyright (c) 2014-2018, Jon Schlinkert -Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) - -The MIT License (MIT) +Copyright (c) Microsoft Corporation -Copyright (c) 2014-2018, Jon Schlinkert. +MIT License -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: +Copyright (c) -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +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: -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -browserslist 4.22.2 - MIT -https://github.com/browserslist/browserslist#readme - -Copyright 2014 Andrey Sitnik and other contributors - -The MIT License (MIT) +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright 2014 Andrey Sitnik and other contributors +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. -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +--------------------------------------------------------- + +@types/istanbul-lib-coverage 2.0.6 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/istanbul-lib-coverage + +Copyright (c) Microsoft Corporation -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -buffer-from 1.1.2 - MIT -https://github.com/LinusU/buffer-from#readme - -Copyright (c) 2016, 2018 Linus Unneback - MIT License -Copyright (c) 2016, 2018 Linus Unnebäck +Copyright (c) -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: +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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -bytes 3.0.0 - MIT -https://github.com/visionmedia/bytes.js#readme - -Copyright (c) 2015 Jed Watson -Copyright (c) 2012-2014 TJ Holowaychuk -Copyright (c) 2015 Jed Watson -Copyright (c) 2012-2014 TJ Holowaychuk - -(The MIT License) +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. -Copyright (c) 2012-2014 TJ Holowaychuk -Copyright (c) 2015 Jed Watson +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +@types/istanbul-lib-report 3.0.3 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/istanbul-lib-report -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -bytes 3.1.2 - MIT -https://github.com/visionmedia/bytes.js#readme - -Copyright (c) 2015 Jed Watson -Copyright (c) 2012-2014 TJ Holowaychuk -Copyright (c) 2015 Jed Watson -Copyright (c) 2012-2014 TJ Holowaychuk - -(The MIT License) +Copyright (c) Microsoft Corporation -Copyright (c) 2012-2014 TJ Holowaychuk -Copyright (c) 2015 Jed Watson +MIT License -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: +Copyright (c) -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +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: -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cacheable-lookup 7.0.0 - MIT -https://github.com/szmarczak/cacheable-lookup#readme - -Copyright (c) 2019 Szymon Marczak - -MIT License +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright (c) 2019 Szymon Marczak +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. -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +--------------------------------------------------------- + +@types/istanbul-reports 3.0.4 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/istanbul-reports + +Copyright (c) Microsoft Corporation -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cacheable-request 10.2.14 - MIT - - -(c) Luke Childs 2017-2021 and Jared Wray 2022 - MIT License Copyright (c) @@ -52475,1205 +50385,397 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -call-bind 1.0.5 - MIT -https://github.com/ljharb/call-bind#readme - -Copyright (c) 2020 Jordan Harband - -MIT License +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. -Copyright (c) 2020 Jordan Harband +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +@types/json-schema 7.0.15 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-schema + +Copyright (c) Microsoft Corporation -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -callsites 3.1.0 - MIT -https://github.com/sindresorhus/callsites#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - MIT License -Copyright (c) Sindre Sorhus (sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -camelcase 6.3.0 - MIT -https://github.com/sindresorhus/camelcase#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/mdast 4.0.3 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mdast + +Copyright (c) Microsoft Corporation + MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -camel-case 4.1.2 - MIT -https://github.com/blakeembrey/change-case/tree/master/packages/camel-case#readme - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - -The MIT License (MIT) -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +@types/mdx 2.0.10 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mdx -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -caniuse-api 3.0.0 - MIT -https://github.com/nyalab/caniuse-api#readme - -Copyright (c) 2014 Sebastien Balayn - -The MIT License (MIT) +Copyright (c) Microsoft Corporation -Copyright (c) 2014 Sébastien Balayn +MIT License -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: +Copyright (c) -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +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: -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ccount 2.0.1 - MIT -https://github.com/wooorm/ccount#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - -(The MIT License) +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright (c) 2015 Titus Wormer +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. -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- + +@types/mime 1.3.5 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mime + +Copyright (c) Microsoft Corporation -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -chalk 2.4.2 - MIT -https://github.com/chalk/chalk#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - MIT License -Copyright (c) Sindre Sorhus (sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -chalk 4.1.2 - MIT -https://github.com/chalk/chalk#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/ms 0.7.34 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ms + +Copyright (c) Microsoft Corporation + MIT License -Copyright (c) Sindre Sorhus (sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -chalk 5.3.0 - MIT -https://github.com/chalk/chalk#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/node 17.0.45 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node + +Copyright (c) Microsoft Corporation + MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -character-entities 2.0.2 - MIT -https://github.com/wooorm/character-entities#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - -(The MIT License) -Copyright (c) 2015 Titus Wormer +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +@types/node 20.10.5 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -character-entities-html4 2.1.0 - MIT -https://github.com/wooorm/character-entities-html4#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - -(The MIT License) +Copyright (c) Microsoft Corporation -Copyright (c) 2015 Titus Wormer +MIT License -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: +Copyright (c) -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +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: -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -character-entities-legacy 3.0.0 - MIT -https://github.com/wooorm/character-entities-legacy#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - -(The MIT License) +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright (c) 2015 Titus Wormer +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. -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -character-reference-invalid 2.0.1 - MIT -https://github.com/wooorm/character-reference-invalid#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - -(The MIT License) +@types/node-forge 1.3.10 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node-forge -Copyright (c) 2015 Titus Wormer +Copyright (c) Microsoft Corporation -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: +MIT License -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Copyright (c) -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -char-regex 1.0.2 - MIT - - -Copyright (c) 2019 Richie Bendall - -MIT License - -Copyright (c) 2019 Richie Bendall - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cheerio 1.0.0-rc.12 - MIT -https://cheerio.js.org/ - -Copyright (c) 2022 The Cheerio contributors - -MIT License +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: -Copyright (c) 2022 The Cheerio contributors +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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: +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. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -chokidar 3.5.3 - MIT -https://github.com/paulmillr/chokidar - -(c) Paul Miller -Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker - -The MIT License (MIT) +--------------------------------------------------------- -Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker +@types/parse-json 4.0.2 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/parse-json -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: +Copyright (c) Microsoft Corporation -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +MIT License -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -chrome-trace-event 1.0.3 - MIT -https://github.com/samccone/chrome-trace-event#readme - -Copyright (c) 2015 Joyent Inc. - -# This is the MIT license +Copyright (c) -Copyright (c) 2015 Joyent Inc. All rights reserved. +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: -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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +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. -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. +--------------------------------------------------------- - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ci-info 3.9.0 - MIT -https://github.com/watson/ci-info - -Copyright (c) 2016 Thomas Watson Steen - -The MIT License (MIT) +--------------------------------------------------------- -Copyright (c) 2016 Thomas Watson Steen +@types/prismjs 1.26.3 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/prismjs -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: +Copyright (c) Microsoft Corporation -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +MIT License -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -clean-css 5.3.3 - MIT -https://github.com/clean-css/clean-css - -Copyright (c) 2017 JakubPawlowicz.com - -Copyright (C) 2017 JakubPawlowicz.com +Copyright (c) -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: +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: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/prop-types 15.7.11 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/prop-types + +Copyright (c) Microsoft Corporation -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -clean-stack 2.2.0 - MIT -https://github.com/sindresorhus/clean-stack#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - MIT License -Copyright (c) Sindre Sorhus (sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cli-boxes 3.0.0 - MIT -https://github.com/sindresorhus/cli-boxes#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/qs 6.9.11 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/qs + +Copyright (c) Microsoft Corporation + MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cli-table3 0.6.3 - MIT -https://github.com/cli-table/cli-table3 - -Copyright (c) 2010 LearnBoost -Copyright (c) 2014 James Talmage - + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/range-parser 1.2.7 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/range-parser + +Copyright (c) Microsoft Corporation + MIT License -Copyright (c) 2014 James Talmage +Copyright (c) -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: +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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -clone-deep 4.0.1 - MIT -https://github.com/jonschlinkert/clone-deep - -Copyright (c) 2014-2018, Jon Schlinkert -Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) - -The MIT License (MIT) +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. -Copyright (c) 2014-2018, Jon Schlinkert. +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +@types/react 18.2.45 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react + +Copyright (c) Microsoft Corporation -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -clsx 2.0.0 - MIT -https://github.com/lukeed/clsx#readme - -(c) Luke Edwards (https://lukeed.com) -Copyright (c) Luke Edwards (lukeed.com) - MIT License -Copyright (c) Luke Edwards (lukeed.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -collapse-white-space 2.1.0 - MIT -https://github.com/wooorm/collapse-white-space#readme - - -(The MIT License) -Copyright (c) 2015 Titus Wormer +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +@types/react-router 5.1.20 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -color-convert 2.0.1 - MIT -https://github.com/Qix-/color-convert#readme - -Copyright (c) 2011-2016, Heather Arthur and Josh Junon -Copyright (c) 2011-2016 Heather Arthur - -Copyright (c) 2011-2016 Heather Arthur +Copyright (c) Microsoft Corporation -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: +MIT License -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Copyright (c) -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. +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: - - ---------------------------------------------------------- - ---------------------------------------------------------- - -colord 2.9.3 - MIT -https://github.com/omgovich/colord#readme - -Copyright (c) 2020 Vlad Shilov omgovich@ya.ru - -MIT License +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright (c) 2020 Vlad Shilov omgovich@ya.ru +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. -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -colorette 2.0.20 - MIT -https://github.com/jorgebucaran/colorette#readme - -Copyright (c) Jorge Bucaran - -Copyright © Jorge Bucaran <> +@types/react-router-config 5.0.11 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router-config -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: +Copyright (c) Microsoft Corporation + +MIT License + +Copyright (c) + +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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -color-name 1.1.4 - MIT -https://github.com/colorjs/color-name - -Copyright (c) 2015 Dmitry Ivanov - -The MIT License (MIT) -Copyright (c) 2015 Dmitry Ivanov - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -combine-promises 1.2.0 - MIT - - -Copyright (c) 2021 Sebastien Lorber - -MIT License +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. -Copyright (c) 2021 Sébastien Lorber +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +@types/react-router-dom 5.3.3 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router-dom -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -commander 10.0.1 - MIT -https://github.com/tj/commander.js#readme - -Copyright (c) 2011 TJ Holowaychuk - -(The MIT License) +Copyright (c) Microsoft Corporation -Copyright (c) 2011 TJ Holowaychuk +MIT License -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: +Copyright (c) -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +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: -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -commander 2.20.3 - MIT -https://github.com/tj/commander.js#readme - -Copyright (c) 2011 TJ Holowaychuk - -(The MIT License) +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright (c) 2011 TJ Holowaychuk +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. -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -commander 5.1.0 - MIT -https://github.com/tj/commander.js#readme - -Copyright (c) 2011 TJ Holowaychuk - -(The MIT License) +@types/retry 0.12.0 - MIT -Copyright (c) 2011 TJ Holowaychuk -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: +Copyright (c) Microsoft Corporation -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +MIT License -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -commander 7.2.0 - MIT -https://github.com/tj/commander.js#readme - -Copyright (c) 2011 TJ Holowaychuk - -(The MIT License) +Copyright (c) -Copyright (c) 2011 TJ Holowaychuk +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: -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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +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. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -comma-separated-tokens 2.0.3 - MIT -https://github.com/wooorm/comma-separated-tokens#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - -(The MIT License) +--------------------------------------------------------- -Copyright (c) 2016 Titus Wormer +--------------------------------------------------------- -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: +@types/sax 1.2.7 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sax -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Copyright (c) Microsoft Corporation -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -compressible 2.0.18 - MIT -https://github.com/jshttp/compressible#readme - -Copyright (c) 2013 Jonathan Ong -Copyright (c) 2014 Jeremiah Senkpiel -Copyright (c) 2015 Douglas Christopher Wilson -Copyright (c) 2013 Jonathan Ong -Copyright (c) 2014 Jeremiah Senkpiel -Copyright (c) 2015 Douglas Christopher Wilson - -(The MIT License) +MIT License -Copyright (c) 2013 Jonathan Ong -Copyright (c) 2014 Jeremiah Senkpiel -Copyright (c) 2015 Douglas Christopher Wilson +Copyright (c) -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: +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: -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -compression 1.7.4 - MIT -https://github.com/expressjs/compression#readme - -Copyright (c) 2010 Sencha Inc. -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2011 TJ Holowaychuk -Copyright (c) 2014-2015 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014-2015 Douglas Christopher Wilson - -(The MIT License) +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. -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014-2015 Douglas Christopher Wilson +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +@types/scheduler 0.16.8 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/scheduler -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -concat-map 0.0.1 - MIT -https://github.com/substack/node-concat-map - - -This software is released under the MIT license: +Copyright (c) Microsoft Corporation -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: +MIT License -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Copyright (c) -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -config-chain 1.1.13 - MIT -http://github.com/dominictarr/config-chain - -Copyright (c) 2011 Dominic Tarr - -Copyright (c) 2011 Dominic Tarr +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: -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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -The above copyright notice and this permission notice -shall be included in all copies or substantial portions of the Software. +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. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -connect-history-api-fallback 2.0.0 - MIT -https://github.com/bripkens/connect-history-api-fallback#readme - -Copyright (c) 2022 Ben Blackmore and contributors - -The MIT License +--------------------------------------------------------- -Copyright (c) 2022 Ben Blackmore and contributors +--------------------------------------------------------- -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: +@types/send 0.17.4 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/send -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +Copyright (c) Microsoft Corporation -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -consola 2.15.3 - MIT -https://github.com/nuxt/consola#readme - - MIT License Copyright (c) @@ -53682,188 +50784,55 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -content-disposition 0.5.2 - MIT -https://github.com/jshttp/content-disposition#readme - -Copyright (c) 2014 Douglas Christopher Wilson - -(The MIT License) +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. -Copyright (c) 2014 Douglas Christopher Wilson +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +@types/serve-index 1.9.4 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/serve-index -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -content-disposition 0.5.4 - MIT -https://github.com/jshttp/content-disposition#readme - -Copyright (c) 2014-2017 Douglas Christopher Wilson - -(The MIT License) +Copyright (c) Microsoft Corporation -Copyright (c) 2014-2017 Douglas Christopher Wilson +MIT License -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: +Copyright (c) -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +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: -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -content-type 1.0.5 - MIT -https://github.com/jshttp/content-type#readme - -Copyright (c) 2015 Douglas Christopher Wilson - -(The MIT License) +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright (c) 2015 Douglas Christopher Wilson +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. -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -convert-source-map 2.0.0 - MIT -https://github.com/thlorenz/convert-source-map - -Copyright 2013 Thorsten Lorenz - -Copyright 2013 Thorsten Lorenz. -All rights reserved. +@types/serve-static 1.15.5 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/serve-static -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: +Copyright (c) Microsoft Corporation -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +MIT License -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cookie 0.5.0 - MIT -https://github.com/jshttp/cookie#readme - -Copyright (c) 2012-2014 Roman Shtylman -Copyright (c) 2015 Douglas Christopher Wilson -Copyright (c) 2012-2014 Roman Shtylman -Copyright (c) 2015 Douglas Christopher Wilson - -(The MIT License) +Copyright (c) -Copyright (c) 2012-2014 Roman Shtylman -Copyright (c) 2015 Douglas Christopher Wilson +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: -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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +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. -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. +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/sockjs 0.3.36 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sockjs + +Copyright (c) Microsoft Corporation - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cookie-signature 1.0.6 - MIT -https://github.com/visionmedia/node-cookie-signature - -Copyright (c) 2012 LearnBoost - MIT License Copyright (c) @@ -53872,74 +50841,421 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -copy-text-to-clipboard 3.2.0 - MIT -https://github.com/sindresorhus/copy-text-to-clipboard#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/unist 2.0.10 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/unist + +Copyright (c) Microsoft Corporation + MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -copy-webpack-plugin 11.0.0 - MIT -https://github.com/webpack-contrib/copy-webpack-plugin - -Copyright JS Foundation and other contributors - -Copyright JS Foundation and other contributors -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -core-js 3.34.0 - MIT -https://github.com/zloirock/core-js#readme - -Copyright (c) 2014-2023 Denis Pushkarev -copyright (c) 2014-2023 Denis Pushkarev - -Copyright (c) 2014-2023 Denis Pushkarev +@types/unist 3.0.2 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/unist -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 +Copyright (c) Microsoft Corporation + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/ws 8.5.10 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ws + +Copyright (c) Microsoft Corporation + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/yargs 17.0.32 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/yargs + +Copyright (c) Microsoft Corporation + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/yargs-parser 21.0.3 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/yargs-parser + +Copyright (c) Microsoft Corporation + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/ast 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/floating-point-hex-parser 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + +Copyright (c) 2017 Mauro Bringolf + +MIT License + +Copyright (c) 2017 Mauro Bringolf + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/helper-api-error 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/helper-buffer 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/helper-numbers 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/helper-wasm-bytecode 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/helper-wasm-section 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/ieee754 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/utf8 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/wasm-edit 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/wasm-gen 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/wasm-opt 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/wasm-parser 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/wast-printer 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +accepts 1.3.8 - MIT +https://github.com/jshttp/accepts#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson + +(The MIT License) + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +acorn 8.11.2 - MIT +https://github.com/acornjs/acorn + +Copyright (c) 2012-2022 by various contributors + +MIT License + +Copyright (C) 2012-2022 by various contributors (see AUTHORS) + +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: @@ -53954,18 +51270,36 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -core-js-compat 3.34.0 - MIT -https://github.com/zloirock/core-js#readme - -Copyright (c) 2014-2023 Denis Pushkarev - -Copyright (c) 2014-2023 Denis Pushkarev + + +--------------------------------------------------------- + +--------------------------------------------------------- + +acorn-import-assertions 1.9.0 - MIT +https://github.com/xtuc/acorn-import-assertions#readme + + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +acorn-jsx 5.3.2 - MIT +https://github.com/acornjs/acorn-jsx + +Copyright (c) 2012-2017 by Ingvar Stepanyan + +Copyright (C) 2012-2017 by Ingvar Stepanyan Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -53984,19 +51318,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -core-js-pure 3.34.0 - MIT -https://github.com/zloirock/core-js#readme - -Copyright (c) 2014-2023 Denis Pushkarev -copyright (c) 2014-2023 Denis Pushkarev - -Copyright (c) 2014-2023 Denis Pushkarev + + +--------------------------------------------------------- + +--------------------------------------------------------- + +acorn-walk 8.3.1 - MIT +https://github.com/acornjs/acorn + +Copyright (c) 2012-2020 by various contributors + +MIT License + +Copyright (C) 2012-2020 by various contributors (see AUTHORS) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -54015,24 +51350,28 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -core-util-is 1.0.3 - MIT -https://github.com/isaacs/core-util-is#readme - -Copyright Joyent, Inc. and other Node contributors - -Copyright Node.js contributors. All rights reserved. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +address 1.2.2 - MIT +https://github.com/node-modules/address#readme + +Copyright (c) 2013 - 2014 fengmk2 +Copyright (c) 2015 - present node-modules and other contributors + +This software is licensed under the MIT License. + +Copyright (C) 2013 - 2014 fengmk2 +Copyright (C) 2015 - present node-modules and other contributors. 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 +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: The above copyright notice and this permission notice shall be included in @@ -54042,23 +51381,43 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cosmiconfig 6.0.0 - MIT -https://github.com/davidtheclark/cosmiconfig#readme - -Copyright (c) 2015 David Clark - +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +aggregate-error 3.1.0 - MIT +https://github.com/sindresorhus/aggregate-error#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ajv 8.12.0 - MIT +https://ajv.js.org/ + +Copyright (c) 2015-2021 Evgeny Poberezkin + The MIT License (MIT) -Copyright (c) 2015 David Clark +Copyright (c) 2015-2021 Evgeny Poberezkin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -54078,20 +51437,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cosmiconfig 7.1.0 - MIT -https://github.com/davidtheclark/cosmiconfig#readme - -Copyright (c) 2015 David Clark - -The MIT License (MIT) -Copyright (c) 2015 David Clark + +--------------------------------------------------------- + +--------------------------------------------------------- + +ajv-formats 2.1.1 - MIT +https://github.com/ajv-validator/ajv-formats#readme + +Copyright (c) 2020 Evgeny Poberezkin + +MIT License + +Copyright (c) 2020 Evgeny Poberezkin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -54111,20 +51470,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cosmiconfig 8.3.6 - MIT -https://github.com/cosmiconfig/cosmiconfig#readme - -Copyright (c) 2015 David Clark - + +--------------------------------------------------------- + +--------------------------------------------------------- + +ajv-keywords 5.1.0 - MIT +https://github.com/epoberezkin/ajv-keywords#readme + +Copyright (c) 2016 Evgeny Poberezkin + The MIT License (MIT) -Copyright (c) 2015 David Clark +Copyright (c) 2016 Evgeny Poberezkin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -54144,20 +51502,39 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cross-spawn 7.0.3 - MIT -https://github.com/moxystudio/node-cross-spawn - -Copyright (c) 2018 Made With MOXY Lda - + +--------------------------------------------------------- + +--------------------------------------------------------- + +algoliasearch 4.22.0 - MIT + + +(c) Algolia, inc. https://github.com/algolia/algoliasearch-client-javascript + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +algoliasearch-helper 3.16.1 - MIT +https://community.algolia.com/algoliasearch-helper-js/ + +Copyright (c) 2015 Algolia +Copyright Joyent, Inc. and other Node contributors + The MIT License (MIT) -Copyright (c) 2018 Made With MOXY Lda +Copyright (c) 2015 Algolia Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -54166,276 +51543,123 @@ 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: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -crypto-random-string 4.0.0 - MIT -https://github.com/sindresorhus/crypto-random-string#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ansi-regex 5.0.1 - MIT +https://github.com/chalk/ansi-regex#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cssesc 3.0.0 - MIT -https://mths.be/cssesc - -Copyright Mathias Bynens - -Copyright Mathias Bynens -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: -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -css-loader 6.8.1 - MIT -https://github.com/webpack-contrib/css-loader - -Copyright JS Foundation and other contributors - -Copyright JS Foundation and other contributors +--------------------------------------------------------- -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: +ansi-styles 4.3.0 - MIT +https://github.com/chalk/ansi-styles#readme -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Copyright (c) Sindre Sorhus (sindresorhus.com) -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -css-minimizer-webpack-plugin 4.2.2 - MIT -https://github.com/webpack-contrib/css-minimizer-webpack-plugin - -Copyright JS Foundation and other contributors - -Copyright JS Foundation and other contributors +MIT License -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: +Copyright (c) Sindre Sorhus (sindresorhus.com) -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +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: -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cssnano 5.1.15 - MIT -https://github.com/cssnano/cssnano - -Copyright (c) Ben Briggs (http://beneb.info) - -Copyright (c) Ben Briggs (http://beneb.info) +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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: +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. -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cssnano-preset-advanced 5.3.10 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - -Copyright (c) Ben Briggs (http://beneb.info) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +ansi-styles 6.2.1 - MIT +https://github.com/chalk/ansi-styles#readme -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cssnano-preset-default 5.2.14 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - -Copyright (c) Ben Briggs (http://beneb.info) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) -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: +MIT License -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Copyright (c) Sindre Sorhus (https://sindresorhus.com) -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cssnano-utils 3.1.0 - MIT -https://github.com/cssnano/cssnano - -Copyright (c) Ben Briggs (http://beneb.info) - -Copyright (c) Ben Briggs (http://beneb.info) +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: -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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +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. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -csso 4.2.0 - MIT -https://github.com/css/csso - -Copyright (c) 2015-2019 by Roman Dvornov -Copyright (c) 2011-2015 by Sergey Kryzhanovsky - -Copyright (C) 2015-2019 by Roman Dvornov -Copyright (C) 2011-2015 by Sergey Kryzhanovsky + +--------------------------------------------------------- + +--------------------------------------------------------- + +arg 5.0.2 - MIT +https://github.com/vercel/arg#readme + +Copyright (c) 2021 Vercel, Inc. + +The MIT License (MIT) + +Copyright (c) 2021 Vercel, Inc. + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +array-flatten 1.1.1 - MIT +https://github.com/blakeembrey/array-flatten + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + +The MIT License (MIT) + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -54454,21 +51678,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -css-tree 1.1.3 - MIT -https://github.com/csstree/csstree#readme - -Copyright (c) 2016-2019 by Roman Dvornov -Copyright 2011 The Closure Compiler Authors -Copyright 2011 Mozilla Foundation and contributors -Copyright 2014 Mozilla Foundation and contributors - -Copyright (C) 2016-2019 by Roman Dvornov + + +--------------------------------------------------------- + +--------------------------------------------------------- + +array-flatten 2.1.2 - MIT +https://github.com/blakeembrey/array-flatten + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + +The MIT License (MIT) + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -54487,18 +51710,460 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -csstype 3.1.3 - MIT -https://github.com/frenic/csstype#readme - -Copyright (c) 2017-2018 Fredrik Nicol - -Copyright (c) 2017-2018 Fredrik Nicol + + +--------------------------------------------------------- + +--------------------------------------------------------- + +array-union 2.1.0 - MIT +https://github.com/sindresorhus/array-union#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +astring 1.8.6 - MIT +https://github.com/davidbonnet/astring#readme + +Copyright (c) 2015, David Bonnet + +Copyright (c) 2015, David Bonnet + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +autoprefixer 10.4.16 - MIT +https://github.com/postcss/autoprefixer#readme + +Copyright 2013 Andrey Sitnik + +The MIT License (MIT) + +Copyright 2013 Andrey Sitnik + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +babel-loader 9.1.3 - MIT +https://github.com/babel/babel-loader + +Copyright (c) 2014-2019 Luis Couto + +Copyright (c) 2014-2019 Luís Couto + +MIT License + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +babel-plugin-dynamic-import-node 2.3.3 - MIT +https://github.com/airbnb/babel-plugin-dynamic-import-node#readme + +Copyright (c) 2016 Airbnb + +MIT License + +Copyright (c) 2016 Airbnb + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +babel-plugin-polyfill-corejs2 0.4.7 - MIT +https://github.com/babel/babel-polyfills#readme + +Copyright (c) 2014-present Nicolo Ribaudo and other contributors + +MIT License + +Copyright (c) 2014-present Nicolò Ribaudo and other contributors + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +babel-plugin-polyfill-corejs3 0.8.7 - MIT +https://github.com/babel/babel-polyfills#readme + +Copyright (c) 2014-present Nicolo Ribaudo and other contributors + +MIT License + +Copyright (c) 2014-present Nicolò Ribaudo and other contributors + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +babel-plugin-polyfill-regenerator 0.5.4 - MIT +https://github.com/babel/babel-polyfills#readme + +Copyright (c) 2014-present Nicolo Ribaudo and other contributors + +MIT License + +Copyright (c) 2014-present Nicolò Ribaudo and other contributors + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +bail 2.0.2 - MIT +https://github.com/wooorm/bail#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + +(The MIT License) + +Copyright (c) 2015 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +balanced-match 1.0.2 - MIT +https://github.com/juliangruber/balanced-match + +Copyright (c) 2013 Julian Gruber + +(MIT) + +Copyright (c) 2013 Julian Gruber <julian@juliangruber.com> + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +batch 0.6.1 - MIT +https://github.com/visionmedia/batch#readme + +Copyright (c) 2013 TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2013 TJ Holowaychuk + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +big.js 5.2.2 - MIT +https://github.com/MikeMcl/big.js#readme + +Copyright (c) 2018 Michael Mclaughlin +Copyright (c) 2018 Michael Mclaughlin https://github.com/MikeMcl/big.js/LICENCE + +The MIT Licence (Expat). + +Copyright (c) 2018 Michael Mclaughlin + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + + +--------------------------------------------------------- + +--------------------------------------------------------- + +binary-extensions 2.2.0 - MIT +https://github.com/sindresorhus/binary-extensions#readme + +Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com) + +MIT License + +Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +body-parser 1.20.1 - MIT +https://github.com/expressjs/body-parser#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2015 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2015 Douglas Christopher Wilson + +(The MIT License) + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2015 Douglas Christopher Wilson + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +bonjour-service 1.1.1 - MIT +https://github.com/onlxltd/bonjour-service + +(c) 2021 ON LX Limited +(c) 2015-2016 Thomas Watson Steen +Copyright (https://github.com/onlxltd/bonjour-service) + +The MIT License (MIT) + +Copyright (https://github.com/onlxltd/bonjour-service) (c) 2021 ON LX Limited + +Portions Copyright (Bonjour - https://github.com/watson/bonjour) (c) 2015-2016 Thomas Watson Steen Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -54517,815 +52182,5747 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -debounce 1.2.1 - MIT -https://github.com/component/debounce#readme - -Copyright (c) 2012-2018 The Debounce Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +boxen 6.2.1 - MIT +https://github.com/sindresorhus/boxen#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +boxen 7.1.1 - MIT +https://github.com/sindresorhus/boxen#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +brace-expansion 1.1.11 - MIT +https://github.com/juliangruber/brace-expansion + +Copyright (c) 2013 Julian Gruber + +MIT License + +Copyright (c) 2013 Julian Gruber + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +braces 3.0.2 - MIT +https://github.com/micromatch/braces + +Copyright (c) 2014-2018, Jon Schlinkert +Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2014-2018, Jon Schlinkert. + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +browserslist 4.22.2 - MIT +https://github.com/browserslist/browserslist#readme + +Copyright 2014 Andrey Sitnik and other contributors + +The MIT License (MIT) + +Copyright 2014 Andrey Sitnik and other contributors + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +buffer-from 1.1.2 - MIT +https://github.com/LinusU/buffer-from#readme + +Copyright (c) 2016, 2018 Linus Unneback + +MIT License + +Copyright (c) 2016, 2018 Linus Unnebäck + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +bytes 3.0.0 - MIT +https://github.com/visionmedia/bytes.js#readme + +Copyright (c) 2015 Jed Watson +Copyright (c) 2012-2014 TJ Holowaychuk +Copyright (c) 2015 Jed Watson +Copyright (c) 2012-2014 TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2012-2014 TJ Holowaychuk +Copyright (c) 2015 Jed Watson + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +bytes 3.1.2 - MIT +https://github.com/visionmedia/bytes.js#readme + +Copyright (c) 2015 Jed Watson +Copyright (c) 2012-2014 TJ Holowaychuk +Copyright (c) 2015 Jed Watson +Copyright (c) 2012-2014 TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2012-2014 TJ Holowaychuk +Copyright (c) 2015 Jed Watson + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cacheable-lookup 7.0.0 - MIT +https://github.com/szmarczak/cacheable-lookup#readme + +Copyright (c) 2019 Szymon Marczak + +MIT License + +Copyright (c) 2019 Szymon Marczak + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cacheable-request 10.2.14 - MIT + + +(c) Luke Childs 2017-2021 and Jared Wray 2022 + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +call-bind 1.0.5 - MIT +https://github.com/ljharb/call-bind#readme + +Copyright (c) 2020 Jordan Harband + +MIT License + +Copyright (c) 2020 Jordan Harband + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +callsites 3.1.0 - MIT +https://github.com/sindresorhus/callsites#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +camelcase 6.3.0 - MIT +https://github.com/sindresorhus/camelcase#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +camel-case 4.1.2 - MIT +https://github.com/blakeembrey/change-case/tree/master/packages/camel-case#readme + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + +The MIT License (MIT) + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +caniuse-api 3.0.0 - MIT +https://github.com/nyalab/caniuse-api#readme + +Copyright (c) 2014 Sebastien Balayn + +The MIT License (MIT) + +Copyright (c) 2014 Sébastien Balayn + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ccount 2.0.1 - MIT +https://github.com/wooorm/ccount#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + +(The MIT License) + +Copyright (c) 2015 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +chalk 2.4.2 - MIT +https://github.com/chalk/chalk#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +chalk 4.1.2 - MIT +https://github.com/chalk/chalk#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +chalk 5.3.0 - MIT +https://github.com/chalk/chalk#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +character-entities 2.0.2 - MIT +https://github.com/wooorm/character-entities#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + +(The MIT License) + +Copyright (c) 2015 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +character-entities-html4 2.1.0 - MIT +https://github.com/wooorm/character-entities-html4#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + +(The MIT License) + +Copyright (c) 2015 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +character-entities-legacy 3.0.0 - MIT +https://github.com/wooorm/character-entities-legacy#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + +(The MIT License) + +Copyright (c) 2015 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +character-reference-invalid 2.0.1 - MIT +https://github.com/wooorm/character-reference-invalid#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + +(The MIT License) + +Copyright (c) 2015 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +char-regex 1.0.2 - MIT + + +Copyright (c) 2019 Richie Bendall + +MIT License + +Copyright (c) 2019 Richie Bendall + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cheerio 1.0.0-rc.12 - MIT +https://cheerio.js.org/ + +Copyright (c) 2022 The Cheerio contributors + +MIT License + +Copyright (c) 2022 The Cheerio contributors + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +chokidar 3.5.3 - MIT +https://github.com/paulmillr/chokidar + +(c) Paul Miller +Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker + +The MIT License (MIT) + +Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +chrome-trace-event 1.0.3 - MIT +https://github.com/samccone/chrome-trace-event#readme + +Copyright (c) 2015 Joyent Inc. + +# This is the MIT license + +Copyright (c) 2015 Joyent Inc. All rights reserved. + +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: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +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. + + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ci-info 3.9.0 - MIT +https://github.com/watson/ci-info + +Copyright (c) 2016 Thomas Watson Steen + +The MIT License (MIT) + +Copyright (c) 2016 Thomas Watson Steen + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +clean-css 5.3.3 - MIT +https://github.com/clean-css/clean-css + +Copyright (c) 2017 JakubPawlowicz.com + +Copyright (C) 2017 JakubPawlowicz.com + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +clean-stack 2.2.0 - MIT +https://github.com/sindresorhus/clean-stack#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cli-boxes 3.0.0 - MIT +https://github.com/sindresorhus/cli-boxes#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cli-table3 0.6.3 - MIT +https://github.com/cli-table/cli-table3 + +Copyright (c) 2010 LearnBoost +Copyright (c) 2014 James Talmage + +MIT License + +Copyright (c) 2014 James Talmage + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +clone-deep 4.0.1 - MIT +https://github.com/jonschlinkert/clone-deep + +Copyright (c) 2014-2018, Jon Schlinkert +Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2014-2018, Jon Schlinkert. + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +clsx 2.0.0 - MIT +https://github.com/lukeed/clsx#readme + +(c) Luke Edwards (https://lukeed.com) +Copyright (c) Luke Edwards (lukeed.com) + +MIT License + +Copyright (c) Luke Edwards (lukeed.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +collapse-white-space 2.1.0 - MIT +https://github.com/wooorm/collapse-white-space#readme + + +(The MIT License) + +Copyright (c) 2015 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +color-convert 2.0.1 - MIT +https://github.com/Qix-/color-convert#readme + +Copyright (c) 2011-2016, Heather Arthur and Josh Junon +Copyright (c) 2011-2016 Heather Arthur + +Copyright (c) 2011-2016 Heather Arthur + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + + +--------------------------------------------------------- + +--------------------------------------------------------- + +colord 2.9.3 - MIT +https://github.com/omgovich/colord#readme + +Copyright (c) 2020 Vlad Shilov omgovich@ya.ru + +MIT License + +Copyright (c) 2020 Vlad Shilov omgovich@ya.ru + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +colorette 2.0.20 - MIT +https://github.com/jorgebucaran/colorette#readme + +Copyright (c) Jorge Bucaran + +Copyright © Jorge Bucaran <> + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +color-name 1.1.4 - MIT +https://github.com/colorjs/color-name + +Copyright (c) 2015 Dmitry Ivanov + +The MIT License (MIT) +Copyright (c) 2015 Dmitry Ivanov + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +combine-promises 1.2.0 - MIT + + +Copyright (c) 2021 Sebastien Lorber + +MIT License + +Copyright (c) 2021 Sébastien Lorber + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +commander 10.0.1 - MIT +https://github.com/tj/commander.js#readme + +Copyright (c) 2011 TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2011 TJ Holowaychuk + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +commander 2.20.3 - MIT +https://github.com/tj/commander.js#readme + +Copyright (c) 2011 TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2011 TJ Holowaychuk + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +commander 5.1.0 - MIT +https://github.com/tj/commander.js#readme + +Copyright (c) 2011 TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2011 TJ Holowaychuk + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +commander 7.2.0 - MIT +https://github.com/tj/commander.js#readme + +Copyright (c) 2011 TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2011 TJ Holowaychuk + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +comma-separated-tokens 2.0.3 - MIT +https://github.com/wooorm/comma-separated-tokens#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + +(The MIT License) + +Copyright (c) 2016 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +compressible 2.0.18 - MIT +https://github.com/jshttp/compressible#readme + +Copyright (c) 2013 Jonathan Ong +Copyright (c) 2014 Jeremiah Senkpiel +Copyright (c) 2015 Douglas Christopher Wilson +Copyright (c) 2013 Jonathan Ong +Copyright (c) 2014 Jeremiah Senkpiel +Copyright (c) 2015 Douglas Christopher Wilson + +(The MIT License) + +Copyright (c) 2013 Jonathan Ong +Copyright (c) 2014 Jeremiah Senkpiel +Copyright (c) 2015 Douglas Christopher Wilson + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +compression 1.7.4 - MIT +https://github.com/expressjs/compression#readme + +Copyright (c) 2010 Sencha Inc. +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2011 TJ Holowaychuk +Copyright (c) 2014-2015 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2015 Douglas Christopher Wilson + +(The MIT License) + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2015 Douglas Christopher Wilson + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +concat-map 0.0.1 - MIT +https://github.com/substack/node-concat-map + + +This software is released under the MIT license: + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +config-chain 1.1.13 - MIT +http://github.com/dominictarr/config-chain + +Copyright (c) 2011 Dominic Tarr + +Copyright (c) 2011 Dominic Tarr + +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: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +connect-history-api-fallback 2.0.0 - MIT +https://github.com/bripkens/connect-history-api-fallback#readme + +Copyright (c) 2022 Ben Blackmore and contributors + +The MIT License + +Copyright (c) 2022 Ben Blackmore and contributors + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +consola 2.15.3 - MIT +https://github.com/nuxt/consola#readme + + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +content-disposition 0.5.2 - MIT +https://github.com/jshttp/content-disposition#readme + +Copyright (c) 2014 Douglas Christopher Wilson + +(The MIT License) + +Copyright (c) 2014 Douglas Christopher Wilson + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +content-disposition 0.5.4 - MIT +https://github.com/jshttp/content-disposition#readme + +Copyright (c) 2014-2017 Douglas Christopher Wilson + +(The MIT License) + +Copyright (c) 2014-2017 Douglas Christopher Wilson + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +content-type 1.0.5 - MIT +https://github.com/jshttp/content-type#readme + +Copyright (c) 2015 Douglas Christopher Wilson + +(The MIT License) + +Copyright (c) 2015 Douglas Christopher Wilson + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +convert-source-map 2.0.0 - MIT +https://github.com/thlorenz/convert-source-map + +Copyright 2013 Thorsten Lorenz + +Copyright 2013 Thorsten Lorenz. +All rights reserved. + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cookie 0.5.0 - MIT +https://github.com/jshttp/cookie#readme + +Copyright (c) 2012-2014 Roman Shtylman +Copyright (c) 2015 Douglas Christopher Wilson +Copyright (c) 2012-2014 Roman Shtylman +Copyright (c) 2015 Douglas Christopher Wilson + +(The MIT License) + +Copyright (c) 2012-2014 Roman Shtylman +Copyright (c) 2015 Douglas Christopher Wilson + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cookie-signature 1.0.6 - MIT +https://github.com/visionmedia/node-cookie-signature + +Copyright (c) 2012 LearnBoost + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +copy-text-to-clipboard 3.2.0 - MIT +https://github.com/sindresorhus/copy-text-to-clipboard#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +copy-webpack-plugin 11.0.0 - MIT +https://github.com/webpack-contrib/copy-webpack-plugin + +Copyright JS Foundation and other contributors + +Copyright JS Foundation and other contributors + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +core-js 3.34.0 - MIT +https://github.com/zloirock/core-js#readme + +Copyright (c) 2014-2023 Denis Pushkarev +copyright (c) 2014-2023 Denis Pushkarev + +Copyright (c) 2014-2023 Denis Pushkarev + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +core-js-compat 3.34.0 - MIT +https://github.com/zloirock/core-js#readme + +Copyright (c) 2014-2023 Denis Pushkarev + +Copyright (c) 2014-2023 Denis Pushkarev + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +core-js-pure 3.34.0 - MIT +https://github.com/zloirock/core-js#readme + +Copyright (c) 2014-2023 Denis Pushkarev +copyright (c) 2014-2023 Denis Pushkarev + +Copyright (c) 2014-2023 Denis Pushkarev + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +core-util-is 1.0.3 - MIT +https://github.com/isaacs/core-util-is#readme + +Copyright Joyent, Inc. and other Node contributors + +Copyright Node.js contributors. All rights reserved. + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cosmiconfig 6.0.0 - MIT +https://github.com/davidtheclark/cosmiconfig#readme + +Copyright (c) 2015 David Clark + +The MIT License (MIT) + +Copyright (c) 2015 David Clark + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cosmiconfig 7.1.0 - MIT +https://github.com/davidtheclark/cosmiconfig#readme + +Copyright (c) 2015 David Clark + +The MIT License (MIT) + +Copyright (c) 2015 David Clark + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cosmiconfig 8.3.6 - MIT +https://github.com/cosmiconfig/cosmiconfig#readme + +Copyright (c) 2015 David Clark + +The MIT License (MIT) + +Copyright (c) 2015 David Clark + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cross-spawn 7.0.3 - MIT +https://github.com/moxystudio/node-cross-spawn + +Copyright (c) 2018 Made With MOXY Lda + +The MIT License (MIT) + +Copyright (c) 2018 Made With MOXY Lda + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +crypto-random-string 4.0.0 - MIT +https://github.com/sindresorhus/crypto-random-string#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cssesc 3.0.0 - MIT +https://mths.be/cssesc + +Copyright Mathias Bynens + +Copyright Mathias Bynens + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +css-loader 6.8.1 - MIT +https://github.com/webpack-contrib/css-loader + +Copyright JS Foundation and other contributors + +Copyright JS Foundation and other contributors + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +css-minimizer-webpack-plugin 4.2.2 - MIT +https://github.com/webpack-contrib/css-minimizer-webpack-plugin + +Copyright JS Foundation and other contributors + +Copyright JS Foundation and other contributors + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cssnano 5.1.15 - MIT +https://github.com/cssnano/cssnano + +Copyright (c) Ben Briggs (http://beneb.info) + +Copyright (c) Ben Briggs (http://beneb.info) + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cssnano-preset-advanced 5.3.10 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + +Copyright (c) Ben Briggs (http://beneb.info) + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cssnano-preset-default 5.2.14 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + +Copyright (c) Ben Briggs (http://beneb.info) + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cssnano-utils 3.1.0 - MIT +https://github.com/cssnano/cssnano + +Copyright (c) Ben Briggs (http://beneb.info) + +Copyright (c) Ben Briggs (http://beneb.info) + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +csso 4.2.0 - MIT +https://github.com/css/csso + +Copyright (c) 2015-2019 by Roman Dvornov +Copyright (c) 2011-2015 by Sergey Kryzhanovsky + +Copyright (C) 2015-2019 by Roman Dvornov +Copyright (C) 2011-2015 by Sergey Kryzhanovsky + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +css-tree 1.1.3 - MIT +https://github.com/csstree/csstree#readme + +Copyright (c) 2016-2019 by Roman Dvornov +Copyright 2011 The Closure Compiler Authors +Copyright 2011 Mozilla Foundation and contributors +Copyright 2014 Mozilla Foundation and contributors + +Copyright (C) 2016-2019 by Roman Dvornov + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +csstype 3.1.3 - MIT +https://github.com/frenic/csstype#readme + +Copyright (c) 2017-2018 Fredrik Nicol + +Copyright (c) 2017-2018 Fredrik Nicol + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +debounce 1.2.1 - MIT +https://github.com/component/debounce#readme + +Copyright (c) 2012-2018 The Debounce Contributors + +MIT License + +Copyright (c) 2012-2018 The Debounce Contributors. See CONTRIBUTORS. + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +debug 2.6.9 - MIT +https://github.com/visionmedia/debug#readme + +Copyright (c) 2014 TJ Holowaychuk +Copyright (c) 2014-2016 TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2014 TJ Holowaychuk + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial +portions of the Software. + +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. + + + +--------------------------------------------------------- + +--------------------------------------------------------- + +debug 4.3.4 - MIT +https://github.com/debug-js/debug#readme + +Copyright (c) 2018-2021 Josh Junon +Copyright (c) 2014-2017 TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2014-2017 TJ Holowaychuk +Copyright (c) 2018-2021 Josh Junon + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial +portions of the Software. + +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. + + + +--------------------------------------------------------- + +--------------------------------------------------------- + +decode-named-character-reference 1.0.2 - MIT +https://github.com/wooorm/decode-named-character-reference#readme + +(c) Titus Wormer +Copyright (c) 2021 Titus Wormer + +(The MIT License) + +Copyright (c) 2021 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +decompress-response 6.0.0 - MIT +https://github.com/sindresorhus/decompress-response#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +deep-extend 0.6.0 - MIT +https://github.com/unclechu/node-deep-extend + +Copyright (c) 2013-2018 Viacheslav Lotsmanov +Copyright (c) 2013-2018, Viacheslav Lotsmanov + +The MIT License (MIT) + +Copyright (c) 2013-2018, Viacheslav Lotsmanov + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +deepmerge 4.3.1 - MIT +https://github.com/TehShrike/deepmerge + +Copyright (c) 2012 James Halliday, Josh Duff, and other contributors + +The MIT License (MIT) + +Copyright (c) 2012 James Halliday, Josh Duff, and other contributors + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +defer-to-connect 2.0.1 - MIT +https://github.com/szmarczak/defer-to-connect#readme + +Copyright (c) 2018 Szymon Marczak + +MIT License + +Copyright (c) 2018 Szymon Marczak + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +define-data-property 1.1.1 - MIT +https://github.com/ljharb/define-data-property#readme + +Copyright (c) 2023 Jordan Harband + +MIT License + +Copyright (c) 2023 Jordan Harband + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +define-lazy-prop 2.0.0 - MIT +https://github.com/sindresorhus/define-lazy-prop#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +define-properties 1.2.1 - MIT +https://github.com/ljharb/define-properties#readme + +Copyright (c) 2015 Jordan Harband + +The MIT License (MIT) + +Copyright (C) 2015 Jordan Harband + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +del 6.1.1 - MIT +https://github.com/sindresorhus/del#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +depd 2.0.0 - MIT +https://github.com/dougwilson/nodejs-depd#readme + +Copyright (c) 2015 Douglas Christopher Wilson +Copyright (c) 2014-2018 Douglas Christopher Wilson + +(The MIT License) + +Copyright (c) 2014-2018 Douglas Christopher Wilson + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +dequal 2.0.3 - MIT +https://github.com/lukeed/dequal#readme + +(c) Luke Edwards (https://lukeed.com) +Copyright (c) Luke Edwards (lukeed.com) + +The MIT License (MIT) + +Copyright (c) Luke Edwards (lukeed.com) + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +destroy 1.2.0 - MIT +https://github.com/stream-utils/destroy#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014 Jonathan Ong me@jongleberry.com +Copyright (c) 2015-2022 Douglas Christopher Wilson +Copyright (c) 2015-2022 Douglas Christopher Wilson doug@somethingdoug.com + + +The MIT License (MIT) + +Copyright (c) 2014 Jonathan Ong me@jongleberry.com +Copyright (c) 2015-2022 Douglas Christopher Wilson doug@somethingdoug.com + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +detect-node 2.1.0 - MIT +https://github.com/iliakan/detect-node + +Copyright (c) 2017 Ilya Kantor + +MIT License + +Copyright (c) 2017 Ilya Kantor + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +detect-port 1.5.1 - MIT +https://github.com/node-modules/detect-port + +Copyright (c) 2014 - present node-modules and other contributors + +The MIT License (MIT) + +Copyright (c) 2014 - present node-modules and other contributors + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +detect-port-alt 1.1.6 - MIT +https://github.com/node-modules/detect-port + +Copyright (c) 2015 xdf + +The MIT License (MIT) + +Copyright (c) 2015 xdf + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +devlop 1.1.0 - MIT +https://github.com/wooorm/devlop#readme + +(c) Titus Wormer +Copyright (c) 2023 Titus Wormer + +(The MIT License) + +Copyright (c) 2023 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +dir-glob 3.0.1 - MIT +https://github.com/kevva/dir-glob#readme + +Copyright (c) Kevin Martensson + +MIT License + +Copyright (c) Kevin Mårtensson (github.com/kevva) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +dns-equal 1.0.0 - MIT +https://github.com/watson/dns-equal#readme + +Copyright (c) 2016 Thomas Watson Steen + +The MIT License (MIT) + +Copyright (c) 2016 Thomas Watson Steen + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +dns-packet 5.6.1 - MIT +https://github.com/mafintosh/dns-packet + +Copyright (c) 2016 Mathias Buus + +The MIT License (MIT) + +Copyright (c) 2016 Mathias Buus + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +dom-converter 0.2.0 - MIT +https://github.com/AriaMinaei/dom-converter#readme + +Copyright (c) 2013 Aria Minaei + +The MIT License (MIT) + +Copyright (c) 2013 Aria Minaei + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +dom-serializer 2.0.0 - MIT +https://github.com/cheeriojs/dom-serializer#readme + +Copyright (c) 2014 The cheeriojs contributors + +License + +(The MIT License) + +Copyright (c) 2014 The cheeriojs contributors + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +dot-case 3.0.4 - MIT +https://github.com/blakeembrey/change-case/tree/master/packages/dot-case#readme + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + +The MIT License (MIT) + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +dot-prop 6.0.1 - MIT +https://github.com/sindresorhus/dot-prop#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +duplexer 0.1.2 - MIT +https://github.com/Raynos/duplexer + +Copyright (c) 2012 Raynos + +Copyright (c) 2012 Raynos. + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +eastasianwidth 0.2.0 - MIT +https://github.com/komagata/eastasianwidth#readme + + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +ee-first 1.1.1 - MIT +https://github.com/jonathanong/ee-first + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014 Jonathan Ong me@jongleberry.com + + +The MIT License (MIT) + +Copyright (c) 2014 Jonathan Ong me@jongleberry.com + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +emojilib 2.4.0 - MIT +https://github.com/muan/emojilib#readme + +Copyright (c) 2014 Mu-An Chiou + +The MIT License (MIT) + +Copyright (c) 2014 Mu-An Chiou + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +emoji-regex 9.2.2 - MIT +https://mths.be/emoji-regex + +Copyright Mathias Bynens + +Copyright Mathias Bynens + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +emojis-list 3.0.0 - MIT +https://nidecoc.io/Kikobeats/emojis-list + +Copyright (c) 2015 Kiko Beats +(c) Kiko Beats (http://www.kikobeats.com) + +The MIT License (MIT) + +Copyright © 2015 Kiko Beats + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +emoticon 4.0.1 - MIT +https://github.com/wooorm/emoticon#readme + +(c) Titus Wormer +Copyright (c) 2014 Titus Wormer + +(The MIT License) + +Copyright (c) 2014 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +encodeurl 1.0.2 - MIT +https://github.com/pillarjs/encodeurl#readme + +Copyright (c) 2016 Douglas Christopher Wilson + +(The MIT License) + +Copyright (c) 2016 Douglas Christopher Wilson + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +enhanced-resolve 5.15.0 - MIT +http://github.com/webpack/enhanced-resolve + +Copyright JS Foundation and other contributors +Copyright (c) 2012-2019 JS Foundation and other contributors + +Copyright JS Foundation and other contributors + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +error-ex 1.3.2 - MIT +https://github.com/qix-/node-error-ex#readme + +Copyright (c) 2015 JD Ballard + +The MIT License (MIT) + +Copyright (c) 2015 JD Ballard + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +escalade 3.1.1 - MIT +https://github.com/lukeed/escalade#readme + +(c) Luke Edwards (https://lukeed.com) +Copyright (c) Luke Edwards (lukeed.com) + +MIT License + +Copyright (c) Luke Edwards (lukeed.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +escape-goat 4.0.0 - MIT +https://github.com/sindresorhus/escape-goat#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +escape-html 1.0.3 - MIT +https://github.com/component/escape-html + +Copyright (c) 2015 Andreas Lubbe +Copyright (c) 2012-2013 TJ Holowaychuk +Copyright (c) 2015 Tiancheng Timothy Gu + +(The MIT License) + +Copyright (c) 2012-2013 TJ Holowaychuk +Copyright (c) 2015 Andreas Lubbe +Copyright (c) 2015 Tiancheng "Timothy" Gu + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +escape-string-regexp 4.0.0 - MIT +https://github.com/sindresorhus/escape-string-regexp#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +escape-string-regexp 5.0.0 - MIT +https://github.com/sindresorhus/escape-string-regexp#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +es-module-lexer 1.4.1 - MIT +https://github.com/guybedford/es-module-lexer#readme + +Copyright (c) 2018-2022 Guy Bedford +Copyright (c) 2012-2020 by various contributors + +MIT License +----------- + +Copyright (C) 2018-2022 Guy Bedford + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +estree-util-attach-comments 3.0.0 - MIT +https://github.com/syntax-tree/estree-util-attach-comments#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + +(The MIT License) + +Copyright (c) 2020 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +estree-util-build-jsx 3.0.1 - MIT +https://github.com/syntax-tree/estree-util-build-jsx#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + +(The MIT License) + +Copyright (c) 2020 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +estree-util-is-identifier-name 3.0.0 - MIT +https://github.com/syntax-tree/estree-util-is-identifier-name#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + +(The MIT License) + +Copyright (c) 2020 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +estree-util-to-js 2.0.0 - MIT +https://github.com/syntax-tree/estree-util-to-js#readme + +(c) . We +(c) Titus Wormer +Copyright (c) 2022 Titus Wormer + +(The MIT License) + +Copyright (c) 2022 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +estree-util-value-to-estree 3.0.1 - MIT +https://github.com/remcohaszing/estree-util-value-to-estree#readme + +Copyright (c) 2021 Remco Haszing +(c) Remco Haszing (https://github.com/remcohaszing) + +# MIT License + +Copyright © 2021 Remco Haszing + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial +portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +estree-util-visit 2.0.0 - MIT +https://github.com/syntax-tree/estree-util-visit#readme + +(c) Titus Wormer +Copyright (c) 2021 Titus Wormer + +(The MIT License) + +Copyright (c) 2021 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +estree-walker 3.0.3 - MIT +https://github.com/Rich-Harris/estree-walker#readme + +Copyright (c) 2015-20 these people (https://github.com/Rich-Harris/estree-walker/graphs/contributors) + +Copyright (c) 2015-20 [these people](https://github.com/Rich-Harris/estree-walker/graphs/contributors) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +eta 2.2.0 - MIT +https://eta.js.org/ + +Copyright 2023 Ben Gubler + +Copyright 2023 Ben Gubler + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +etag 1.8.1 - MIT +https://github.com/jshttp/etag#readme + +Copyright (c) 2014-2016 Douglas Christopher Wilson + +(The MIT License) + +Copyright (c) 2014-2016 Douglas Christopher Wilson + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +eval 0.1.8 - MIT +http://github.com/pierrec/node-eval + +Copyright (c) 2012 Pierre Curto + +Copyright (c) 2012 Pierre Curto + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +eventemitter3 4.0.7 - MIT +https://github.com/primus/eventemitter3#readme + +Copyright (c) 2014 Arnout Kazemier + +The MIT License (MIT) + +Copyright (c) 2014 Arnout Kazemier + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +events 3.3.0 - MIT +https://github.com/Gozala/events#readme + +Copyright Joyent, Inc. and other Node contributors + +MIT + +Copyright Joyent, Inc. and other Node contributors. + +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: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +execa 5.1.1 - MIT +https://github.com/sindresorhus/execa#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +express 4.18.2 - MIT +http://expressjs.com/ + +Copyright (c) 2013 Roman Shtylman +Copyright (c) 2009-2013 TJ Holowaychuk +Copyright (c) 2014-2015 Douglas Christopher Wilson +Copyright (c) 2009-2014 TJ Holowaychuk +Copyright (c) 2013-2014 Roman Shtylman +Copyright (c) 2014-2015 Douglas Christopher Wilson + +(The MIT License) + +Copyright (c) 2009-2014 TJ Holowaychuk +Copyright (c) 2013-2014 Roman Shtylman +Copyright (c) 2014-2015 Douglas Christopher Wilson + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +extend 3.0.2 - MIT +https://github.com/justmoon/node-extend#readme + +Copyright (c) 2014 Stefan Thomas + +The MIT License (MIT) + +Copyright (c) 2014 Stefan Thomas + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + + +--------------------------------------------------------- + +--------------------------------------------------------- + +extend-shallow 2.0.1 - MIT +https://github.com/jonschlinkert/extend-shallow + +Copyright (c) 2015 Jon Schlinkert +Copyright (c) 2014-2015, Jon Schlinkert + +The MIT License (MIT) + +Copyright (c) 2014-2015, Jon Schlinkert. + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fast-deep-equal 3.1.3 - MIT +https://github.com/epoberezkin/fast-deep-equal#readme + +Copyright (c) 2017 Evgeny Poberezkin + +MIT License + +Copyright (c) 2017 Evgeny Poberezkin + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fast-glob 3.3.2 - MIT +https://github.com/mrmlnc/fast-glob#readme + +Copyright (c) Denis Malinochkin + +The MIT License (MIT) + +Copyright (c) Denis Malinochkin + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fast-url-parser 1.1.3 - MIT +https://github.com/petkaantonov/urlparser + +Copyright (c) 2014 Petka Antonov + +Copyright (c) 2014 Petka Antonov + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fault 2.0.1 - MIT +https://github.com/wooorm/fault#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + +(The MIT License) + +Copyright (c) 2015 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +feed 4.2.2 - MIT +https://github.com/jpmonette/feed + +copyright 2013, John +Copyright https://validator.w3.org/feed/docs/rss2.html +Copyright (c) 2013, Jean-Philippe Monette + +Copyright (C) 2013, Jean-Philippe Monette + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +file-loader 6.2.0 - MIT +https://github.com/webpack-contrib/file-loader + +Copyright JS Foundation and other contributors + +Copyright JS Foundation and other contributors + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fill-range 7.0.1 - MIT +https://github.com/jonschlinkert/fill-range + +Copyright (c) 2014-present, Jon Schlinkert +Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2014-present, Jon Schlinkert. + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +finalhandler 1.2.0 - MIT +https://github.com/pillarjs/finalhandler#readme + +Copyright (c) 2014-2022 Douglas Christopher Wilson +Copyright (c) 2014-2022 Douglas Christopher Wilson + +(The MIT License) + +Copyright (c) 2014-2022 Douglas Christopher Wilson + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +find-cache-dir 4.0.0 - MIT +https://github.com/sindresorhus/find-cache-dir#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) James Talmage (https://github.com/jamestalmage) + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) James Talmage (https://github.com/jamestalmage) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +find-up 3.0.0 - MIT +https://github.com/sindresorhus/find-up#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +find-up 5.0.0 - MIT +https://github.com/sindresorhus/find-up#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +find-up 6.3.0 - MIT +https://github.com/sindresorhus/find-up#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +follow-redirects 1.15.6 - MIT +https://github.com/follow-redirects/follow-redirects + +Copyright 2014-present Olivier Lalonde , James Talmage , Ruben Verborgh + +Copyright 2014–present Olivier Lalonde , James Talmage , Ruben Verborgh + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fork-ts-checker-webpack-plugin 6.5.3 - MIT +https://github.com/TypeStrong/fork-ts-checker-webpack-plugin#readme + +Copyright (c) 2020 TypeStrong + +MIT License + +Copyright (c) 2020 TypeStrong + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +format 0.2.2 - MIT +http://samhuri.net/proj/format + +Copyright 2010 - 2014 Sami Samhuri sami@samhuri.net +Copyright 2010 - 2013 Sami Samhuri + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +form-data-encoder 4.0.2 - MIT +https://github.com/octet-stream/form-data-encoder#readme + +Copyright (c) 2021-present Nick K. + +The MIT License (MIT) + +Copyright (c) 2021-present Nick K. + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +forwarded 0.2.0 - MIT +https://github.com/jshttp/forwarded#readme + +Copyright (c) 2014-2017 Douglas Christopher Wilson + +(The MIT License) + +Copyright (c) 2014-2017 Douglas Christopher Wilson + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fraction.js 4.3.7 - MIT +https://www.xarg.org/2014/03/rational-numbers-in-javascript/ + +Copyright (c) 2023 Robert Eisele +Copyright (c) 2023, Robert Eisele (robert@raw.org) +Copyright (c) 2023, Robert Eisele (https://raw.org/) + +MIT License + +Copyright (c) 2023 Robert Eisele + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fresh 0.5.2 - MIT +https://github.com/jshttp/fresh#readme + +Copyright (c) 2012 TJ Holowaychuk +Copyright (c) 2016-2017 Douglas Christopher Wilson +Copyright (c) 2012 TJ Holowaychuk +Copyright (c) 2016-2017 Douglas Christopher Wilson + +(The MIT License) + +Copyright (c) 2012 TJ Holowaychuk +Copyright (c) 2016-2017 Douglas Christopher Wilson + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fs-extra 11.2.0 - MIT +https://github.com/jprichardson/node-fs-extra + +Copyright (c) 2011-2017 JP Richardson +Copyright (c) 2011-2017 JP Richardson (https://github.com/jprichardson) +Copyright (c) Sindre Sorhus (sindresorhus.com) +Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and Contributors + +(The MIT License) + +Copyright (c) 2011-2017 JP Richardson + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fs-extra 9.1.0 - MIT +https://github.com/jprichardson/node-fs-extra + +Copyright (c) 2011-2017 JP Richardson +Copyright (c) 2011-2017 JP Richardson (https://github.com/jprichardson) +Copyright (c) Sindre Sorhus (sindresorhus.com) +Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and Contributors + +(The MIT License) + +Copyright (c) 2011-2017 JP Richardson + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +function-bind 1.1.2 - MIT +https://github.com/Raynos/function-bind + +Copyright (c) 2013 Raynos + +Copyright (c) 2013 Raynos. + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + + + +--------------------------------------------------------- + +--------------------------------------------------------- + +gensync 1.0.0-beta.2 - MIT +https://github.com/loganfsmyth/gensync + +Copyright 2018 Logan Smyth + +Copyright 2018 Logan Smyth + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +get-intrinsic 1.2.2 - MIT +https://github.com/ljharb/get-intrinsic#readme + +Copyright (c) 2020 Jordan Harband + +MIT License + +Copyright (c) 2020 Jordan Harband + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +get-stream 6.0.1 - MIT +https://github.com/sindresorhus/get-stream#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +get-stream 8.0.1 - MIT +https://github.com/sindresorhus/get-stream#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fagnivade/levenshtein v1.0.1 - MIT + + +Copyright (c) 2015 Agniva De Sarker + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fakavel/rsrc v0.10.2 - MIT + + +Copyright 2013-2020 The rsrc +Copyright (c) 2013-2017 The rsrc + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Falecthomas%2Fkingpin/v2 v2.4.0 - MIT + + +Copyright (c) 2014 Alec Thomas + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Falecthomas%2Fparticiple/v2 v2.0.0-beta.4 - MIT + + + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Falecthomas/units v0.0.0-20211218093645-b94a6e3cc137 - MIT + + +Copyright (c) 2014 Alec Thomas + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Farmon/circbuf v0.0.0-20150827004946-bbbad097214e - MIT + + +Copyright (c) 2013 Armon Dadgar + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Farmon/go-metrics v0.4.1 - MIT + + +Copyright (c) 2013 Armon Dadgar + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Farmon/go-radix v1.0.0 - MIT + + +Copyright (c) 2014 Armon Dadgar + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Farmon/go-socks5 v0.0.0-20160902184237-e75332964ef5 - MIT + + +Copyright (c) 2014 Armon Dadgar + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fasaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 - MIT + + +Copyright (c) 2014-2020 Alex Saskevich + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-container-networking/zapai v0.0.3 - MIT + + +Copyright (c) 2016 Microsoft Azure + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fcontainerservice%2Farmcontainerservice/v4 v4.7.0 - MIT + + +Copyright (c) Microsoft Corporation + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fdashboard/armdashboard v1.2.0 - MIT + + +Copyright (c) Microsoft Corporation + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Finternal/v2 v2.0.0 - MIT + + +Copyright (c) Microsoft Corporation + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fmanagementgroups/armmanagementgroups v1.0.0 - MIT + + +Copyright (c) Microsoft Corporation + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fmonitor/armmonitor v0.11.0 - MIT + + +Copyright (c) Microsoft Corporation + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fresources/armresources v1.2.0 - MIT + + +Copyright (c) Microsoft Corporation + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fstorage/armstorage v1.5.0 - MIT + + +Container (c) Access +Copyright (c) Microsoft Corporation + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fstorage/azblob v1.2.1 - MIT + + +Copyright (c) Microsoft Corporation + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk/azidentity v1.5.1 - MIT + + +Copyright (c) Microsoft Corporation + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk/internal v1.5.2 - MIT + + +(c) Val Thoermer/Alamy +Copyright (c) Microsoft Corporation +Copyright 2017 Microsoft Corporation + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure/azure-sdk-for-go v68.0.0+incompatible - MIT + + +(c) . GetQueueReference 'q +Copyright (c) Microsoft Corporation +Copyright Directive in France, the Bing Visual Search API + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure/go-ansiterm v0.0.0-20230124172434-306776ec8161 - MIT + + +Copyright (c) 2015 Microsoft Corporation + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazuread/microsoft-authentication-library-for-go v1.2.1 - MIT + + +Copyright (c) Microsoft Corporation + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fbenbjohnson/clock v1.1.0 - MIT + + +Copyright (c) 2014 Ben Johnson + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fbeorn7/perks v1.0.1 - MIT + + +Copyright (c) 2013 Blake Mizerany + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fblang%2Fsemver/v4 v4.0.0 - MIT + + +Copyright (c) 2014 Benedikt Lang + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fblang/semver v3.5.1+incompatible - MIT + + +Copyright (c) 2014 Benedikt Lang + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fbshuster-repo/logrus-logstash-hook v1.0.0 - MIT + + +Copyright (c) 2016 Boaz Shuster + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fbugsnag/bugsnag-go v0.0.0-20141110184014-b1d153021fcd - MIT + + +Copyright (c) 2014 Bugsnag + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fbugsnag/panicwrap v0.0.0-20151223152923-e2c28503fcd0 - MIT + + +Copyright (c) 2013 Mitchell Hashimoto + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fburntsushi/toml v1.3.2 - MIT + + +Copyright 2010 The Go Authors +Copyright (c) 2013 TOML authors +Copyright (c) 2018 TOML authors + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcakturk/go-netstat v0.0.0-20200220111822-e5b49efee7a5 - MIT + + +Copyright (c) 2018 Cihangir Akturk + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcenkalti%2Fbackoff/v4 v4.2.1 - MIT + + +Copyright (c) 2014 Cenk Alti + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcespare%2Fxxhash/v2 v2.2.0 - MIT + + +Copyright (c) 2016 Caleb Spare + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fchzyer/logex v1.1.10 - MIT + + + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fchzyer/readline v0.0.0-20180603132655-2972be24d48e - MIT + + +Copyright (c) 2015 Chzyer +Copyright 2011 The Go Authors +Copyright 2013 The Go Authors +Copyright (c) 2004 Sam Hocevar + +MIT License + +Copyright (c) + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fchzyer/test v0.0.0-20180213035817-a1ea475d72b1 - MIT + + +Copyright (c) 2016 chzyer + MIT License -Copyright (c) 2012-2018 The Debounce Contributors. See CONTRIBUTORS. +Copyright (c) -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: +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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -debug 2.6.9 - MIT -https://github.com/visionmedia/debug#readme - -Copyright (c) 2014 TJ Holowaychuk -Copyright (c) 2014-2016 TJ Holowaychuk - -(The MIT License) +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. -Copyright (c) 2014 TJ Holowaychuk +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial -portions of the Software. +github.com%2Fcilium%2Flumberjack/v2 v2.3.0 - MIT -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -debug 4.3.4 - MIT -https://github.com/debug-js/debug#readme - -Copyright (c) 2018-2021 Josh Junon -Copyright (c) 2014-2017 TJ Holowaychuk - -(The MIT License) +Copyright (c) 2014 Nate Finch -Copyright (c) 2014-2017 TJ Holowaychuk -Copyright (c) 2018-2021 Josh Junon +MIT License -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: +Copyright (c) -The above copyright notice and this permission notice shall be included in all copies or substantial -portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -decode-named-character-reference 1.0.2 - MIT -https://github.com/wooorm/decode-named-character-reference#readme - -(c) Titus Wormer -Copyright (c) 2021 Titus Wormer - -(The MIT License) +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. -Copyright (c) 2021 Titus Wormer +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +github.com%2Fclient9/misspell v0.3.4 - MIT + + +copyright Nick Galbreath +Copyright 2009 The Go Authors +Copyright 2011 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright (c) 2015-2017 Nick Galbreath -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -decompress-response 6.0.0 - MIT -https://github.com/sindresorhus/decompress-response#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -deep-extend 0.6.0 - MIT -https://github.com/unclechu/node-deep-extend - -Copyright (c) 2013-2018 Viacheslav Lotsmanov -Copyright (c) 2013-2018, Viacheslav Lotsmanov - -The MIT License (MIT) -Copyright (c) 2013-2018, Viacheslav Lotsmanov +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +github.com%2Fcpuguy83%2Fgo-md2man/v2 v2.0.3 - MIT -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -deepmerge 4.3.1 - MIT -https://github.com/TehShrike/deepmerge - -Copyright (c) 2012 James Halliday, Josh Duff, and other contributors - -The MIT License (MIT) -Copyright (c) 2012 James Halliday, Josh Duff, and other contributors +Copyright (c) 2014 Brian Goff -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: +MIT License -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +Copyright (c) -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -defer-to-connect 2.0.1 - MIT -https://github.com/szmarczak/defer-to-connect#readme - -Copyright (c) 2018 Szymon Marczak - -MIT License +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: -Copyright (c) 2018 Szymon Marczak +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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: +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. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -define-data-property 1.1.1 - MIT -https://github.com/ljharb/define-data-property#readme - -Copyright (c) 2023 Jordan Harband - -MIT License +--------------------------------------------------------- -Copyright (c) 2023 Jordan Harband +github.com%2Fcreack/pty v1.1.18 - MIT -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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Copyright 2014 The Go Authors +Copyright (c) 2011 Keith Rarick -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -define-lazy-prop 2.0.0 - MIT -https://github.com/sindresorhus/define-lazy-prop#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - MIT License -Copyright (c) Sindre Sorhus (sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -define-properties 1.2.1 - MIT -https://github.com/ljharb/define-properties#readme - -Copyright (c) 2015 Jordan Harband - -The MIT License (MIT) -Copyright (C) 2015 Jordan Harband +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +github.com%2Fdanieljoos/wincred v1.2.0 - MIT + + +Copyright (c) 2014 Daniel Joos -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -del 6.1.1 - MIT -https://github.com/sindresorhus/del#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -depd 2.0.0 - MIT -https://github.com/dougwilson/nodejs-depd#readme - -Copyright (c) 2015 Douglas Christopher Wilson -Copyright (c) 2014-2018 Douglas Christopher Wilson - -(The MIT License) -Copyright (c) 2014-2018 Douglas Christopher Wilson +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +github.com%2Fdatadog/datadog-go v3.2.0+incompatible - MIT -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -dequal 2.0.3 - MIT -https://github.com/lukeed/dequal#readme - -(c) Luke Edwards (https://lukeed.com) -Copyright (c) Luke Edwards (lukeed.com) - -The MIT License (MIT) -Copyright (c) Luke Edwards (lukeed.com) +Copyright 2013 Ooyala, Inc. +Copyright (c) 2015 Datadog, Inc -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: +MIT License -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +Copyright (c) -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -destroy 1.2.0 - MIT -https://github.com/stream-utils/destroy#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014 Jonathan Ong me@jongleberry.com -Copyright (c) 2015-2022 Douglas Christopher Wilson -Copyright (c) 2015-2022 Douglas Christopher Wilson doug@somethingdoug.com - +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: -The MIT License (MIT) +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright (c) 2014 Jonathan Ong me@jongleberry.com -Copyright (c) 2015-2022 Douglas Christopher Wilson doug@somethingdoug.com +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. -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +--------------------------------------------------------- + +github.com%2Fdgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 - MIT + + +Copyright (c) 2014-2017 Damian Gryski +Copyright (c) 2016-2017 Nicola Asuni - Tecnick.com -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -detect-node 2.1.0 - MIT -https://github.com/iliakan/detect-node - -Copyright (c) 2017 Ilya Kantor - MIT License -Copyright (c) 2017 Ilya Kantor +Copyright (c) -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: +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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -detect-port 1.5.1 - MIT -https://github.com/node-modules/detect-port - -Copyright (c) 2014 - present node-modules and other contributors - -The MIT License (MIT) +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. -Copyright (c) 2014 - present node-modules and other contributors +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +github.com%2Fdocker/docker-credential-helpers v0.8.0 - MIT -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -detect-port-alt 1.1.6 - MIT -https://github.com/node-modules/detect-port - -Copyright (c) 2015 xdf - -The MIT License (MIT) -Copyright (c) 2015 xdf +Copyright (c) 2016 David Calavera +Copyright (c) 2004, 2006 The Linux Foundation and its contributors -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: +MIT License -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Copyright (c) -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -devlop 1.1.0 - MIT -https://github.com/wooorm/devlop#readme - -(c) Titus Wormer -Copyright (c) 2023 Titus Wormer - -(The MIT License) +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: -Copyright (c) 2023 Titus Wormer +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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: +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. -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdustin/go-humanize v1.0.1 - MIT + + +Copyright (c) 2005-2008 Dustin Sallings -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -dir-glob 3.0.1 - MIT -https://github.com/kevva/dir-glob#readme - -Copyright (c) Kevin Martensson - MIT License -Copyright (c) Kevin Mårtensson (github.com/kevva) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -dns-equal 1.0.0 - MIT -https://github.com/watson/dns-equal#readme - -Copyright (c) 2016 Thomas Watson Steen - -The MIT License (MIT) -Copyright (c) 2016 Thomas Watson Steen +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +github.com%2Feapache/channels v1.1.0 - MIT -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -dns-packet 5.6.1 - MIT -https://github.com/mafintosh/dns-packet - -Copyright (c) 2016 Mathias Buus - -The MIT License (MIT) -Copyright (c) 2016 Mathias Buus +Copyright (c) 2013 Evan Huus -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: +MIT License -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +Copyright (c) -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -dom-converter 0.2.0 - MIT -https://github.com/AriaMinaei/dom-converter#readme - -Copyright (c) 2013 Aria Minaei - -The MIT License (MIT) +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: -Copyright (c) 2013 Aria Minaei +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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: +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. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -dom-serializer 2.0.0 - MIT -https://github.com/cheeriojs/dom-serializer#readme - -Copyright (c) 2014 The cheeriojs contributors - -License +--------------------------------------------------------- -(The MIT License) +github.com%2Feapache/queue v1.1.0 - MIT -Copyright (c) 2014 The cheeriojs contributors -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: +Copyright (c) 2014 Evan Huus + +MIT License + +Copyright (c) + +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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -dot-case 3.0.4 - MIT -https://github.com/blakeembrey/change-case/tree/master/packages/dot-case#readme - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - -The MIT License (MIT) +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. -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +github.com%2Femicklei%2Fgo-restful/v3 v3.11.0 - MIT + + +Copyright 2013 Ernest Micklei +Copyright 2014 Ernest Micklei +Copyright 2015 Ernest Micklei +Copyright 2018 Ernest Micklei +Copyright 2021 Ernest Micklei +Copyright (c) 2012,2013 Ernest Micklei +(c) 2012-2015, http://ernestmicklei.com +(c) 2012 - 2023, http://ernestmicklei.com -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -dot-prop 6.0.1 - MIT -https://github.com/sindresorhus/dot-prop#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -duplexer 0.1.2 - MIT -https://github.com/Raynos/duplexer - -Copyright (c) 2012 Raynos - -Copyright (c) 2012 Raynos. -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +--------------------------------------------------------- + +github.com%2Fexponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d - MIT + + +Copyright (c) 2015 Exponent Labs LLC -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -eastasianwidth 0.2.0 - MIT -https://github.com/komagata/eastasianwidth#readme - - MIT License Copyright (c) @@ -55334,1287 +57931,417 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -ee-first 1.1.1 - MIT -https://github.com/jonathanong/ee-first - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014 Jonathan Ong me@jongleberry.com - +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. -The MIT License (MIT) +--------------------------------------------------------- -Copyright (c) 2014 Jonathan Ong me@jongleberry.com +--------------------------------------------------------- -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: +github.com%2Ffatih/camelcase v1.0.0 - MIT -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -emojilib 2.4.0 - MIT -https://github.com/muan/emojilib#readme - -Copyright (c) 2014 Mu-An Chiou - -The MIT License (MIT) +Copyright (c) 2015 Fatih Arslan -Copyright (c) 2014 Mu-An Chiou +MIT License -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: +Copyright (c) -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +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: -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -emoji-regex 9.2.2 - MIT -https://mths.be/emoji-regex - -Copyright Mathias Bynens - -Copyright Mathias Bynens +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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: +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. -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -emojis-list 3.0.0 - MIT -https://nidecoc.io/Kikobeats/emojis-list - -Copyright (c) 2015 Kiko Beats -(c) Kiko Beats (http://www.kikobeats.com) - -The MIT License (MIT) +--------------------------------------------------------- -Copyright © 2015 Kiko Beats +github.com%2ffatih/color v1.15.0 - MIT -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: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) 2013 Fatih Arslan -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -emoticon 4.0.1 - MIT -https://github.com/wooorm/emoticon#readme - -(c) Titus Wormer -Copyright (c) 2014 Titus Wormer - -(The MIT License) +MIT License -Copyright (c) 2014 Titus Wormer +Copyright (c) -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: +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: -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -encodeurl 1.0.2 - MIT -https://github.com/pillarjs/encodeurl#readme - -Copyright (c) 2016 Douglas Christopher Wilson - -(The MIT License) +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. + +--------------------------------------------------------- + +--------------------------------------------------------- -Copyright (c) 2016 Douglas Christopher Wilson +github.com%2Ffelixge/httpsnoop v1.0.3 - MIT -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: -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Copyright (c) 2016 Felix Geisendorfer (felix@debuggable.com) -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -enhanced-resolve 5.15.0 - MIT -http://github.com/webpack/enhanced-resolve - -Copyright JS Foundation and other contributors -Copyright (c) 2012-2019 JS Foundation and other contributors - -Copyright JS Foundation and other contributors +MIT License -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: +Copyright (c) -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +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: -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -error-ex 1.3.2 - MIT -https://github.com/qix-/node-error-ex#readme - -Copyright (c) 2015 JD Ballard - -The MIT License (MIT) +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright (c) 2015 JD Ballard +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. -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +--------------------------------------------------------- + +github.com%2Fflorianl/go-tc v0.4.3 - MIT + + +Copyright (c) 2019-2022 Florian Lehner -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -escalade 3.1.1 - MIT -https://github.com/lukeed/escalade#readme - -(c) Luke Edwards (https://lukeed.com) -Copyright (c) Luke Edwards (lukeed.com) - MIT License -Copyright (c) Luke Edwards (lukeed.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -escape-goat 4.0.0 - MIT -https://github.com/sindresorhus/escape-goat#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Ffoxcpp/go-mockdns v1.0.0 - MIT + + +Copyright (c) 2019 Max Mazurov + MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -escape-html 1.0.3 - MIT -https://github.com/component/escape-html - -Copyright (c) 2015 Andreas Lubbe -Copyright (c) 2012-2013 TJ Holowaychuk -Copyright (c) 2015 Tiancheng Timothy Gu - -(The MIT License) -Copyright (c) 2012-2013 TJ Holowaychuk -Copyright (c) 2015 Andreas Lubbe -Copyright (c) 2015 Tiancheng "Timothy" Gu +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +github.com%2ffrankban/quicktest v1.14.6 - MIT + + +Copyright (c) 2017 Canonical Ltd. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -escape-string-regexp 4.0.0 - MIT -https://github.com/sindresorhus/escape-string-regexp#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -escape-string-regexp 5.0.0 - MIT -https://github.com/sindresorhus/escape-string-regexp#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Ffvbommel/sortorder v1.1.0 - MIT + + +Copyright (c) 2015 Frits van Bommel + MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -es-module-lexer 1.4.1 - MIT -https://github.com/guybedford/es-module-lexer#readme - -Copyright (c) 2018-2022 Guy Bedford -Copyright (c) 2012-2020 by various contributors - -MIT License ------------ - -Copyright (C) 2018-2022 Guy Bedford - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -estree-util-attach-comments 3.0.0 - MIT -https://github.com/syntax-tree/estree-util-attach-comments#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - -(The MIT License) -Copyright (c) 2020 Titus Wormer +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +github.com%2Ffxamacker%2Fcbor/v2 v2.4.0 - MIT -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -estree-util-build-jsx 3.0.1 - MIT -https://github.com/syntax-tree/estree-util-build-jsx#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - -(The MIT License) -Copyright (c) 2020 Titus Wormer +Copyright (c) Faye Amacker +Copyright (c) 2019-present Faye Amacker +Copyright (c) 2021 Montgomery Edwards448 +Copyright (c) Faye Amacker and contributors +Copyright 2020-present Montgomery Edwards448 +Copyright (c) 2004, 2006 The Linux Foundation and its contributors +Copyright (c) 2019-2022 Faye Amacker (https://github.com/fxamacker) -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: +MIT License -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Copyright (c) -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -estree-util-is-identifier-name 3.0.0 - MIT -https://github.com/syntax-tree/estree-util-is-identifier-name#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - -(The MIT License) +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: -Copyright (c) 2020 Titus Wormer +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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: +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. -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -estree-util-to-js 2.0.0 - MIT -https://github.com/syntax-tree/estree-util-to-js#readme - -(c) . We -(c) Titus Wormer -Copyright (c) 2022 Titus Wormer - -(The MIT License) +--------------------------------------------------------- -Copyright (c) 2022 Titus Wormer +github.com%2Fgobuffalo%2Fpackr/v2 v2.8.3 - MIT -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: -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Copyright .Year .Author +Copyright (c) 2016 Mark Bates +Copyright (c) 2018 Mark Bates +Copyright 2009 The Go Authors -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -estree-util-value-to-estree 3.0.1 - MIT -https://github.com/remcohaszing/estree-util-value-to-estree#readme - -Copyright (c) 2021 Remco Haszing -(c) Remco Haszing (https://github.com/remcohaszing) - -# MIT License +MIT License -Copyright © 2021 Remco Haszing +Copyright (c) -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: +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: -The above copyright notice and this permission notice shall be included in all copies or substantial -portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -estree-util-visit 2.0.0 - MIT -https://github.com/syntax-tree/estree-util-visit#readme - -(c) Titus Wormer -Copyright (c) 2021 Titus Wormer - -(The MIT License) +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. -Copyright (c) 2021 Titus Wormer +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +github.com%2Fgobuffalo/flect v1.0.2 - MIT -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -estree-walker 3.0.3 - MIT -https://github.com/Rich-Harris/estree-walker#readme - -Copyright (c) 2015-20 these people (https://github.com/Rich-Harris/estree-walker/graphs/contributors) - -Copyright (c) 2015-20 [these people](https://github.com/Rich-Harris/estree-walker/graphs/contributors) + +Copyright (c) 2019 Mark Bates + +MIT License + +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -eta 2.2.0 - MIT -https://eta.js.org/ - -Copyright 2023 Ben Gubler - -Copyright 2023 Ben Gubler +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgobuffalo/logger v1.0.6 - MIT + + +Copyright (c) 2019 Mark Bates + +MIT License + +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -etag 1.8.1 - MIT -https://github.com/jshttp/etag#readme - -Copyright (c) 2014-2016 Douglas Christopher Wilson - -(The MIT License) -Copyright (c) 2014-2016 Douglas Christopher Wilson +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +github.com%2Fgobuffalo/packd v1.0.1 - MIT -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -eval 0.1.8 - MIT -http://github.com/pierrec/node-eval - -Copyright (c) 2012 Pierre Curto - -Copyright (c) 2012 Pierre Curto -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: +Copyright (c) 2019 Mark Bates -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +MIT License -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -eventemitter3 4.0.7 - MIT -https://github.com/primus/eventemitter3#readme - -Copyright (c) 2014 Arnout Kazemier - -The MIT License (MIT) +Copyright (c) -Copyright (c) 2014 Arnout Kazemier +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: -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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +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. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -events 3.3.0 - MIT -https://github.com/Gozala/events#readme - -Copyright Joyent, Inc. and other Node contributors - -MIT +--------------------------------------------------------- -Copyright Joyent, Inc. and other Node contributors. +--------------------------------------------------------- -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: +github.com%2Fgobwas/glob v0.2.3 - MIT -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -execa 5.1.1 - MIT -https://github.com/sindresorhus/execa#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - +Copyright (c) 2016 Sergey Kamardin + MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -express 4.18.2 - MIT -http://expressjs.com/ - -Copyright (c) 2013 Roman Shtylman -Copyright (c) 2009-2013 TJ Holowaychuk -Copyright (c) 2014-2015 Douglas Christopher Wilson -Copyright (c) 2009-2014 TJ Holowaychuk -Copyright (c) 2013-2014 Roman Shtylman -Copyright (c) 2014-2015 Douglas Christopher Wilson - -(The MIT License) -Copyright (c) 2009-2014 TJ Holowaychuk -Copyright (c) 2013-2014 Roman Shtylman -Copyright (c) 2014-2015 Douglas Christopher Wilson +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +github.com%2Fgoccy/go-json v0.10.2 - MIT -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -extend 3.0.2 - MIT -https://github.com/justmoon/node-extend#readme - -Copyright (c) 2014 Stefan Thomas - -The MIT License (MIT) -Copyright (c) 2014 Stefan Thomas +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2016 The Go Authors +Copyright 2018 The Go Authors +Copyright (c) 2020 Masaaki Goshima -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: +MIT License -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Copyright (c) -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. +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: - - ---------------------------------------------------------- - ---------------------------------------------------------- - -extend-shallow 2.0.1 - MIT -https://github.com/jonschlinkert/extend-shallow - -Copyright (c) 2015 Jon Schlinkert -Copyright (c) 2014-2015, Jon Schlinkert - -The MIT License (MIT) +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright (c) 2014-2015, Jon Schlinkert. +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. -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +--------------------------------------------------------- + +github.com%2Fgo-chi%2Fchi/v5 v5.0.11 - MIT + + +Copyright (c) 2015-present Peter Kieltyka (https://github.com/pkieltyka) +Copyright (c) 2015-present Peter Kieltyka (https://github.com/pkieltyka), Google Inc. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fast-deep-equal 3.1.3 - MIT -https://github.com/epoberezkin/fast-deep-equal#readme - -Copyright (c) 2017 Evgeny Poberezkin - MIT License -Copyright (c) 2017 Evgeny Poberezkin +Copyright (c) -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: +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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fast-glob 3.3.2 - MIT -https://github.com/mrmlnc/fast-glob#readme - -Copyright (c) Denis Malinochkin - -The MIT License (MIT) +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. -Copyright (c) Denis Malinochkin +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +github.com%2Fgo-chi/chi v4.1.2+incompatible - MIT -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fast-url-parser 1.1.3 - MIT -https://github.com/petkaantonov/urlparser - -Copyright (c) 2014 Petka Antonov - -Copyright (c) 2014 Petka Antonov -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: +Copyright (c) 2015-present Peter Kieltyka (https://github.com/pkieltyka) +Copyright (c) 2015-present Peter Kieltyka (https://github.com/pkieltyka), Google Inc. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +MIT License -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fault 2.0.1 - MIT -https://github.com/wooorm/fault#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - -(The MIT License) +Copyright (c) -Copyright (c) 2015 Titus Wormer +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: -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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +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. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -feed 4.2.2 - MIT -https://github.com/jpmonette/feed - -copyright 2013, John -Copyright https://validator.w3.org/feed/docs/rss2.html -Copyright (c) 2013, Jean-Philippe Monette - -Copyright (C) 2013, Jean-Philippe Monette - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -file-loader 6.2.0 - MIT -https://github.com/webpack-contrib/file-loader - -Copyright JS Foundation and other contributors - -Copyright JS Foundation and other contributors +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +github.com%2Fgo-errors/errors v1.4.2 - MIT -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fill-range 7.0.1 - MIT -https://github.com/jonschlinkert/fill-range - -Copyright (c) 2014-present, Jon Schlinkert -Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) - -The MIT License (MIT) -Copyright (c) 2014-present, Jon Schlinkert. +Copyright (c) 2015 Conrad Irwin -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: +MIT License -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +Copyright (c) -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -finalhandler 1.2.0 - MIT -https://github.com/pillarjs/finalhandler#readme - -Copyright (c) 2014-2022 Douglas Christopher Wilson -Copyright (c) 2014-2022 Douglas Christopher Wilson - -(The MIT License) +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: -Copyright (c) 2014-2022 Douglas Christopher Wilson +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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: +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. -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgofrs/uuid v4.2.0+incompatible - MIT + + +Copyright (c) 2018 Andrei Tudor Calin +Copyright (c) 2013-2018 by Maxim Bublis -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -find-cache-dir 4.0.0 - MIT -https://github.com/sindresorhus/find-cache-dir#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) James Talmage (https://github.com/jamestalmage) - MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) James Talmage (https://github.com/jamestalmage) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -find-up 3.0.0 - MIT -https://github.com/sindresorhus/find-up#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - -MIT License -Copyright (c) Sindre Sorhus (sindresorhus.com) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fgo-gorp%2Fgorp/v3 v3.1.0 - MIT + + +Copyright 2012 James Cooper +Copyright (c) 2012 James Cooper -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -find-up 5.0.0 - MIT -https://github.com/sindresorhus/find-up#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -find-up 6.3.0 - MIT -https://github.com/sindresorhus/find-up#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-kit/kit v0.12.0 - MIT + + +Copyright (c) 2015 Peter Bourgon + MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -follow-redirects 1.15.6 - MIT -https://github.com/follow-redirects/follow-redirects - -Copyright 2014-present Olivier Lalonde , James Talmage , Ruben Verborgh - -Copyright 2014–present Olivier Lalonde , James Talmage , Ruben Verborgh - -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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fork-ts-checker-webpack-plugin 6.5.3 - MIT -https://github.com/TypeStrong/fork-ts-checker-webpack-plugin#readme - -Copyright (c) 2020 TypeStrong - -MIT License +--------------------------------------------------------- -Copyright (c) 2020 TypeStrong +github.com%2Fgo-kit/log v0.2.1 - MIT -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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Copyright (c) 2021 Go +Copyright 2011 The Go Authors +Copyright 2013 The Go Authors +Copyright (c) 2014 Simon Eskildsen -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -format 0.2.2 - MIT -http://samhuri.net/proj/format - -Copyright 2010 - 2014 Sami Samhuri sami@samhuri.net -Copyright 2010 - 2013 Sami Samhuri - MIT License Copyright (c) @@ -56623,332 +58350,97 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -form-data-encoder 4.0.2 - MIT -https://github.com/octet-stream/form-data-encoder#readme - -Copyright (c) 2021-present Nick K. - -The MIT License (MIT) +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. -Copyright (c) 2021-present Nick K. +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +github.com%2Fgolang-jwt%2Fjwt/v4 v4.5.0 - MIT -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -forwarded 0.2.0 - MIT -https://github.com/jshttp/forwarded#readme - -Copyright (c) 2014-2017 Douglas Christopher Wilson - -(The MIT License) -Copyright (c) 2014-2017 Douglas Christopher Wilson +Copyright (c) 2021 golang-jwt +Copyright (c) 2012 Dave Grijalva -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: +MIT License -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Copyright (c) -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fraction.js 4.3.7 - MIT -https://www.xarg.org/2014/03/rational-numbers-in-javascript/ - -Copyright (c) 2023 Robert Eisele -Copyright (c) 2023, Robert Eisele (robert@raw.org) -Copyright (c) 2023, Robert Eisele (https://raw.org/) - -MIT License +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: -Copyright (c) 2023 Robert Eisele +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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: +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. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fresh 0.5.2 - MIT -https://github.com/jshttp/fresh#readme - -Copyright (c) 2012 TJ Holowaychuk -Copyright (c) 2016-2017 Douglas Christopher Wilson -Copyright (c) 2012 TJ Holowaychuk -Copyright (c) 2016-2017 Douglas Christopher Wilson - -(The MIT License) +--------------------------------------------------------- -Copyright (c) 2012 TJ Holowaychuk -Copyright (c) 2016-2017 Douglas Christopher Wilson +github.com%2Fgolang-jwt%2Fjwt/v5 v5.2.0 - MIT -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: -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Copyright (c) 2021 golang-jwt +Copyright (c) 2012 Dave Grijalva -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fs-extra 11.2.0 - MIT -https://github.com/jprichardson/node-fs-extra - -Copyright (c) 2011-2017 JP Richardson -Copyright (c) 2011-2017 JP Richardson (https://github.com/jprichardson) -Copyright (c) Sindre Sorhus (sindresorhus.com) -Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and Contributors - -(The MIT License) +MIT License -Copyright (c) 2011-2017 JP Richardson +Copyright (c) -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: +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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fs-extra 9.1.0 - MIT -https://github.com/jprichardson/node-fs-extra - -Copyright (c) 2011-2017 JP Richardson -Copyright (c) 2011-2017 JP Richardson (https://github.com/jprichardson) -Copyright (c) Sindre Sorhus (sindresorhus.com) -Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and Contributors - -(The MIT License) - -Copyright (c) 2011-2017 JP Richardson +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. -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -function-bind 1.1.2 - MIT -https://github.com/Raynos/function-bind - -Copyright (c) 2013 Raynos - -Copyright (c) 2013 Raynos. +github.com%2Fgo-logfmt/logfmt v0.5.1 - MIT -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: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +Copyright (c) 2015 go-logfmt +Copyright 2010 The Go Authors -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. +MIT License - - ---------------------------------------------------------- - ---------------------------------------------------------- - -gensync 1.0.0-beta.2 - MIT -https://github.com/loganfsmyth/gensync - -Copyright 2018 Logan Smyth - -Copyright 2018 Logan Smyth +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -get-intrinsic 1.2.2 - MIT -https://github.com/ljharb/get-intrinsic#readme - -Copyright (c) 2020 Jordan Harband - -MIT License -Copyright (c) 2020 Jordan Harband +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +github.com%2Fgo-ole/go-ole v1.2.6 - MIT + + +Copyright (c) 2013-2017 Yasuhiro Matsumoto, +Copyright (c) 2016 Sebastian Schleemilch -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -get-stream 6.0.1 - MIT -https://github.com/sindresorhus/get-stream#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -get-stream 8.0.1 - MIT -https://github.com/sindresorhus/get-stream#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fgo-stack/stack v1.8.0 - MIT + + +Copyright (c) 2014 Chris Hines -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fagnivade/levenshtein v1.0.1 - MIT - - -Copyright (c) 2015 Agniva De Sarker - MIT License Copyright (c) @@ -56957,37 +58449,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fakavel/rsrc v0.10.2 - MIT - - -Copyright 2013-2020 The rsrc -Copyright (c) 2013-2017 The rsrc - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fgosuri/uitable v0.0.4 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Falecthomas%2Fkingpin/v2 v2.4.0 - MIT - - -Copyright (c) 2014 Alec Thomas - +Copyright (c) 2015, Greg Osuri +Copyright (c) 2014 Mitchell Hashimoto + MIT License Copyright (c) @@ -56996,35 +58469,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Falecthomas%2Fparticiple/v2 v2.0.0-beta.4 - MIT - - - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fgo-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 - MIT + + +Copyright (c) 2013-2020 Masterminds -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Falecthomas/units v0.0.0-20211218093645-b94a6e3cc137 - MIT - - -Copyright (c) 2014 Alec Thomas - MIT License Copyright (c) @@ -57033,36 +58488,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Farmon/circbuf v0.0.0-20150827004946-bbbad097214e - MIT - - -Copyright (c) 2013 Armon Dadgar - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fgregjones/httpcache v0.0.0-20190611155906-901d90724c79 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Farmon/go-metrics v0.4.1 - MIT - - -Copyright (c) 2013 Armon Dadgar - +Copyright (c) 2012 Greg Jones (greg.jones@gmail.com) + MIT License Copyright (c) @@ -57071,36 +58507,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Farmon/go-radix v1.0.0 - MIT - - -Copyright (c) 2014 Armon Dadgar - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fhashicorp/go-hclog v1.5.0 - MIT + + +Copyright (c) HashiCorp, Inc. +Copyright (c) 2017 HashiCorp, Inc. +Copyright (c) 2016 Uber Technologies, Inc. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Farmon/go-socks5 v0.0.0-20160902184237-e75332964ef5 - MIT - - -Copyright (c) 2014 Armon Dadgar - MIT License Copyright (c) @@ -57109,17 +58528,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fasaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 - MIT - - -Copyright (c) 2014-2020 Alex Saskevich - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-syslog v1.0.0 - MIT + + +Copyright (c) 2014 Armon Dadgar + MIT License Copyright (c) @@ -57128,17 +58547,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-container-networking/zapai v0.0.3 - MIT - - -Copyright (c) 2016 Microsoft Azure - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/mdns v1.0.4 - MIT + + +Copyright (c) 2014 Armon Dadgar + MIT License Copyright (c) @@ -57147,17 +58566,21 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fcontainerservice%2Farmcontainerservice/v4 v4.7.0 - MIT - - -Copyright (c) Microsoft Corporation - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhpcloud/tail v1.0.0 - MIT + + +Copyright (c) 2013 99designs +Copyright (c) 2014 ActiveState +Copyright (c) 2015 HPE Software Inc. +Copyright (c) 2013 ActiveState Software Inc. +(c) Copyright 2015 Hewlett Packard Enterprise Development LP + MIT License Copyright (c) @@ -57166,17 +58589,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fdashboard/armdashboard v1.2.0 - MIT - - -Copyright (c) Microsoft Corporation - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhuandu/xstrings v1.4.0 - MIT + + +Copyright 2015 Huan Du +Copyright (c) 2015 Huan + MIT License Copyright (c) @@ -57185,17 +58609,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Finternal/v2 v2.0.0 - MIT - - -Copyright (c) Microsoft Corporation - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fiancoleman/strcase v0.3.0 - MIT + + +Copyright (c) 2018 +Copyright (c) 2015 Ian Coleman + MIT License Copyright (c) @@ -57204,17 +58629,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fmanagementgroups/armmanagementgroups v1.0.0 - MIT - - -Copyright (c) Microsoft Corporation - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fjellydator%2fttlcache/v3 v3.1.1 - MIT + + +Copyright (c) 2022 Jellydator + MIT License Copyright (c) @@ -57223,17 +58648,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fmonitor/armmonitor v0.11.0 - MIT - - -Copyright (c) Microsoft Corporation - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjeremywohl/flatten v1.0.1 - MIT + + +Copyright (c) 2016 Jeremy Wohl + MIT License Copyright (c) @@ -57242,17 +58667,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fresources/armresources v1.2.0 - MIT - - -Copyright (c) Microsoft Corporation - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjmoiron/sqlx v1.3.5 - MIT + + +Copyright (c) 2013, Jason Moiron + MIT License Copyright (c) @@ -57261,18 +58686,20 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fstorage/armstorage v1.5.0 - MIT - - -Container (c) Access -Copyright (c) Microsoft Corporation - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjosephspurrier/goversioninfo v1.4.0 - MIT + + +(c) Microsoft Corporation +Copyright (c) 2019 Joseph +Copyright (c) 2013-2014 The rsrc +Copyright (c) 2016 Joseph Spurrier + MIT License Copyright (c) @@ -57281,17 +58708,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fstorage/azblob v1.2.1 - MIT - - -Copyright (c) Microsoft Corporation - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjosharian/intern v1.0.0 - MIT + + +Copyright (c) 2019 Josh Bleecher Snyder + MIT License Copyright (c) @@ -57300,17 +58727,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk/azidentity v1.5.1 - MIT - - -Copyright (c) Microsoft Corporation - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjosharian/native v1.1.0 - MIT + + +Copyright 2020 Josh Bleecher Snyder + MIT License Copyright (c) @@ -57319,19 +58746,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk/internal v1.5.2 - MIT - - -(c) Val Thoermer/Alamy -Copyright (c) Microsoft Corporation -Copyright 2017 Microsoft Corporation - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjpillora/backoff v1.0.0 - MIT + + +Copyright (c) 2017 Jaime Pillora + MIT License Copyright (c) @@ -57340,19 +58765,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure/azure-sdk-for-go v68.0.0+incompatible - MIT - - -(c) . GetQueueReference 'q -Copyright (c) Microsoft Corporation -Copyright Directive in France, the Bing Visual Search API - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjsimonetti/rtnetlink v0.0.0-20211022192332-93da33804786 - MIT + + +Copyright (c) 2016 Jeroen Simonetti + MIT License Copyright (c) @@ -57361,17 +58784,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure/go-ansiterm v0.0.0-20230124172434-306776ec8161 - MIT - - -Copyright (c) 2015 Microsoft Corporation - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjson-iterator/go v1.1.12 - MIT + + +Copyright (c) 2016 json-iterator + MIT License Copyright (c) @@ -57380,17 +58803,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazuread/microsoft-authentication-library-for-go v1.2.1 - MIT - - -Copyright (c) Microsoft Corporation - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjsternberg/zap-logfmt v1.3.0 - MIT + + +Copyright (c) 2017 Jonathan Sternberg + MIT License Copyright (c) @@ -57399,17 +58822,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fbenbjohnson/clock v1.1.0 - MIT - - -Copyright (c) 2014 Ben Johnson - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkevinburke/ssh_config v1.2.0 - MIT + + +Copyright (c) 2017 Kevin Burke +Copyright (c) 2013 - 2017 Thomas Pelletier, Eric Anderton + MIT License Copyright (c) @@ -57418,17 +58842,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fbeorn7/perks v1.0.1 - MIT - - -Copyright (c) 2013 Blake Mizerany - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkisielk/errcheck v1.5.0 - MIT + + +Copyright (c) 2013 Kamil Kisiel + MIT License Copyright (c) @@ -57437,17 +58861,21 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fblang%2Fsemver/v4 v4.0.0 - MIT - - -Copyright (c) 2014 Benedikt Lang - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkisielk/gotool v1.0.0 - MIT + + +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2017 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright (c) 2013 Kamil Kisiel + MIT License Copyright (c) @@ -57456,17 +58884,20 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fblang/semver v3.5.1+incompatible - MIT - - -Copyright (c) 2014 Benedikt Lang - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fklauspost%2Fcpuid/v2 v2.0.4 - MIT + + +Copyright (c) 2015 Klaus Post +Copyright (c) 2020 Klaus Post +Copyright 2018 The Go Authors +Copyright (c) 2015- Klaus Post & Contributors + MIT License Copyright (c) @@ -57475,17 +58906,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fbshuster-repo/logrus-logstash-hook v1.0.0 - MIT - - -Copyright (c) 2016 Boaz Shuster - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkonsorten/go-windows-terminal-sequences v1.0.1 - MIT + + +Copyright (c) 2017 marvin + konsorten GmbH (open-source@konsorten.de) +Copyright (c) 2018 marvin + konsorten GmbH (open-source@konsorten.de) + MIT License Copyright (c) @@ -57494,17 +58926,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fbugsnag/bugsnag-go v0.0.0-20141110184014-b1d153021fcd - MIT - - -Copyright (c) 2014 Bugsnag - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkr/logfmt v0.0.0-20140226030751-b84e30acd515 - MIT + + +Copyright 2010 The Go Authors +Copyright (c) 2013 Keith Rarick, Blake Mizerany + MIT License Copyright (c) @@ -57513,17 +58946,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fbugsnag/panicwrap v0.0.0-20151223152923-e2c28503fcd0 - MIT - - -Copyright (c) 2013 Mitchell Hashimoto - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkr/pretty v0.3.1 - MIT + + +Copyright 2012 Keith Rarick + MIT License Copyright (c) @@ -57532,19 +58965,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fburntsushi/toml v1.3.2 - MIT - - -Copyright 2010 The Go Authors -Copyright (c) 2013 TOML authors -Copyright (c) 2018 TOML authors - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkr/pty v1.1.1 - MIT + + +Copyright (c) 2011 Keith Rarick + MIT License Copyright (c) @@ -57553,17 +58984,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcakturk/go-netstat v0.0.0-20200220111822-e5b49efee7a5 - MIT - - -Copyright (c) 2018 Cihangir Akturk - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkr/text v0.2.0 - MIT + + +Copyright 2012 Keith Rarick + MIT License Copyright (c) @@ -57572,17 +59003,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcenkalti%2Fbackoff/v4 v4.2.1 - MIT - - -Copyright (c) 2014 Cenk Alti - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fk-sone/critbitgo v1.4.0 - MIT + + +Copyright (c) 2015 Keita Sone + MIT License Copyright (c) @@ -57591,17 +59022,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcespare%2Fxxhash/v2 v2.2.0 - MIT - - -Copyright (c) 2016 Caleb Spare - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flann/builder v0.0.0-20180802200727-47ae307949d0 - MIT + + +Copyright (c) 2014-2015 Lann Martin + MIT License Copyright (c) @@ -57610,16 +59041,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fchzyer/logex v1.1.10 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flann/ps v0.0.0-20150810152359-62de8c46ede0 - MIT + + +Copyright (c) 2013 Michael Hendricks + MIT License Copyright (c) @@ -57628,20 +59060,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fchzyer/readline v0.0.0-20180603132655-2972be24d48e - MIT - - -Copyright (c) 2015 Chzyer -Copyright 2011 The Go Authors -Copyright 2013 The Go Authors -Copyright (c) 2004 Sam Hocevar - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flestrrat-go%2Fbackoff/v2 v2.0.8 - MIT + + +Copyright (c) 2018 lestrrat + MIT License Copyright (c) @@ -57650,17 +59079,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fchzyer/test v0.0.0-20180213035817-a1ea475d72b1 - MIT - - -Copyright (c) 2016 chzyer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flestrrat-go/blackmagic v1.0.1 - MIT + + +Copyright (c) 2021 lestrrat-go + MIT License Copyright (c) @@ -57669,17 +59098,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcilium%2Flumberjack/v2 v2.3.0 - MIT - - -Copyright (c) 2014 Nate Finch - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flestrrat-go/httpcc v1.0.1 - MIT + + +Copyright (c) 2020 lestrrat-go + MIT License Copyright (c) @@ -57688,21 +59117,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fclient9/misspell v0.3.4 - MIT - - -copyright Nick Galbreath -Copyright 2009 The Go Authors -Copyright 2011 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright (c) 2015-2017 Nick Galbreath - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flestrrat-go/iter v1.0.2 - MIT + + +Copyright (c) 2020 lestrrat-go + MIT License Copyright (c) @@ -57711,17 +59136,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcpuguy83%2Fgo-md2man/v2 v2.0.3 - MIT - - -Copyright (c) 2014 Brian Goff - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flestrrat-go/jwx v1.2.26 - MIT + + +Copyright (c) 2015 lestrrat +Copyright 2016 The Go Authors + MIT License Copyright (c) @@ -57730,18 +59156,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcreack/pty v1.1.18 - MIT - - -Copyright 2014 The Go Authors -Copyright (c) 2011 Keith Rarick - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flestrrat-go/option v1.0.1 - MIT + + +Copyright (c) 2021 lestrrat-go + MIT License Copyright (c) @@ -57750,17 +59175,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdanieljoos/wincred v1.2.0 - MIT - - -Copyright (c) 2014 Daniel Joos - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2flib/pq v1.10.9 - MIT + + +Copyright (c) 2011-2013, pq Contributors +Portions Copyright (c) 2011 Blake Mizerany +Copyright (c) 2014 - Gustavo Niemeyer + MIT License Copyright (c) @@ -57769,18 +59196,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdatadog/datadog-go v3.2.0+incompatible - MIT - - -Copyright 2013 Ooyala, Inc. -Copyright (c) 2015 Datadog, Inc - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flithammer/dedent v1.1.0 - MIT + + +Copyright (c) 2018 Peter Lithammer + MIT License Copyright (c) @@ -57789,18 +59215,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 - MIT - - -Copyright (c) 2014-2017 Damian Gryski -Copyright (c) 2016-2017 Nicola Asuni - Tecnick.com - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmailru/easyjson v0.7.7 - MIT + + +Copyright (c) 2016 Mail.Ru Group +Copyright (c) 2009 The Go Authors + MIT License Copyright (c) @@ -57809,18 +59235,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdocker/docker-credential-helpers v0.8.0 - MIT - - -Copyright (c) 2016 David Calavera -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmakenowjust/heredoc v1.0.0 - MIT + + +Copyright (c) 2014-2019 TSUYUSATO Kitsune + MIT License Copyright (c) @@ -57829,17 +59254,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdustin/go-humanize v1.0.1 - MIT - - -Copyright (c) 2005-2008 Dustin Sallings - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmarkbates/errx v1.1.0 - MIT + + +Copyright (c) 2019 Mark Bates + MIT License Copyright (c) @@ -57848,17 +59273,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Feapache/channels v1.1.0 - MIT - - -Copyright (c) 2013 Evan Huus - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmarkbates/oncer v1.0.0 - MIT + + +Copyright (c) 2019 Mark Bates + MIT License Copyright (c) @@ -57867,17 +59292,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Feapache/queue v1.1.0 - MIT - - -Copyright (c) 2014 Evan Huus - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmarkbates/safe v1.0.1 - MIT + + +Copyright (c) 2018 Mark Bates + MIT License Copyright (c) @@ -57886,43 +59311,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Femicklei%2Fgo-restful/v3 v3.11.0 - MIT - - -Copyright 2013 Ernest Micklei -Copyright 2014 Ernest Micklei -Copyright 2015 Ernest Micklei -Copyright 2018 Ernest Micklei -Copyright 2021 Ernest Micklei -Copyright (c) 2012,2013 Ernest Micklei -(c) 2012-2015, http://ernestmicklei.com -(c) 2012 - 2023, http://ernestmicklei.com - -MIT License +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. + +--------------------------------------------------------- + +--------------------------------------------------------- -Copyright (c) +github.com%2Fmasterminds%2Fsemver/v3 v3.2.1 - MIT -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: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) 2014-2019, Matt Butcher and Matt Farina -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fexponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d - MIT - - -Copyright (c) 2015 Exponent Labs LLC - MIT License Copyright (c) @@ -57931,36 +59330,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Ffatih/camelcase v1.0.0 - MIT - - -Copyright (c) 2015 Fatih Arslan - -MIT License +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. -Copyright (c) +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmasterminds%2Fsprig/v3 v3.2.3 - MIT -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: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2ffatih/color v1.15.0 - MIT - - -Copyright (c) 2013 Fatih Arslan - MIT License Copyright (c) @@ -57969,36 +59348,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Ffelixge/httpsnoop v1.0.3 - MIT - - -Copyright (c) 2016 Felix Geisendorfer (felix@debuggable.com) - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2fmasterminds/squirrel v1.5.4 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fflorianl/go-tc v0.4.3 - MIT - - -Copyright (c) 2019-2022 Florian Lehner - +Copyright (c) 2015-2016, Google +Copyright (c) 2014-2015, Lann Martin +Copyright (c) 2015, Matt Farina and Matt Butcher + MIT License Copyright (c) @@ -58007,36 +59369,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Ffoxcpp/go-mockdns v1.0.0 - MIT - - -Copyright (c) 2019 Max Mazurov - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fmasterminds/vcs v1.13.3 - MIT + + +Copyright (c) 2014-2015, Matt Butcher and Matt Farina -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2ffrankban/quicktest v1.14.6 - MIT - - -Copyright (c) 2017 Canonical Ltd. - MIT License Copyright (c) @@ -58045,42 +59388,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Ffvbommel/sortorder v1.1.0 - MIT - - -Copyright (c) 2015 Frits van Bommel - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fmattn/go-colorable v0.1.13 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Ffxamacker%2Fcbor/v2 v2.4.0 - MIT - - -Copyright (c) Faye Amacker -Copyright (c) 2019-present Faye Amacker -Copyright (c) 2021 Montgomery Edwards448 -Copyright (c) Faye Amacker and contributors -Copyright 2020-present Montgomery Edwards448 -Copyright (c) 2004, 2006 The Linux Foundation and its contributors -Copyright (c) 2019-2022 Faye Amacker (https://github.com/fxamacker) - +Copyright (c) 2016 Yasuhiro Matsumoto + MIT License Copyright (c) @@ -58089,39 +59407,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgobuffalo%2Fpackr/v2 v2.8.3 - MIT - - -Copyright .Year .Author -Copyright (c) 2016 Mark Bates -Copyright (c) 2018 Mark Bates -Copyright 2009 The Go Authors - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fmattn/go-isatty v0.0.17 - MIT + + +Copyright (c) Yasuhiro MATSUMOTO -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgobuffalo/flect v1.0.2 - MIT - - -Copyright (c) 2019 Mark Bates - MIT License Copyright (c) @@ -58130,36 +59426,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgobuffalo/logger v1.0.6 - MIT - - -Copyright (c) 2019 Mark Bates - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fmattn/go-oci8 v0.1.1 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgobuffalo/packd v1.0.1 - MIT - - -Copyright (c) 2019 Mark Bates - +Copyright (c) 2014-2018 Yasuhiro Matsumoto, http://mattn.kaoriya.net + MIT License Copyright (c) @@ -58168,40 +59445,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgobwas/glob v0.2.3 - MIT - - -Copyright (c) 2016 Sergey Kamardin - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fmattn/go-runewidth v0.0.9 - MIT + + +Copyright (c) 2016 Yasuhiro Matsumoto -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoccy/go-json v0.10.2 - MIT - - -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2016 The Go Authors -Copyright 2018 The Go Authors -Copyright (c) 2020 Masaaki Goshima - MIT License Copyright (c) @@ -58210,38 +59464,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-chi%2Fchi/v5 v5.0.11 - MIT - - -Copyright (c) 2015-present Peter Kieltyka (https://github.com/pkieltyka) -Copyright (c) 2015-present Peter Kieltyka (https://github.com/pkieltyka), Google Inc. - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fmattn/go-shellwords v1.0.12 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-chi/chi v4.1.2+incompatible - MIT - - -Copyright (c) 2015-present Peter Kieltyka (https://github.com/pkieltyka) -Copyright (c) 2015-present Peter Kieltyka (https://github.com/pkieltyka), Google Inc. - +Copyright (c) 2017 Yasuhiro Matsumoto + MIT License Copyright (c) @@ -58250,37 +59483,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-errors/errors v1.4.2 - MIT - - -Copyright (c) 2015 Conrad Irwin - -MIT License +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. -Copyright (c) +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmattn/go-sqlite3 v1.14.15 - MIT -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: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgofrs/uuid v4.2.0+incompatible - MIT - - -Copyright (c) 2018 Andrei Tudor Calin -Copyright (c) 2013-2018 by Maxim Bublis - MIT License Copyright (c) @@ -58289,37 +59501,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-gorp%2Fgorp/v3 v3.1.0 - MIT - - -Copyright 2012 James Cooper -Copyright (c) 2012 James Cooper - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fmdlayher/arp v0.0.0-20220221190821-c37aaafac7f9 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-kit/kit v0.12.0 - MIT - - -Copyright (c) 2015 Peter Bourgon - +Copyright (c) 2015 Matt Layher +Copyright (c) 2012 The Go Authors + MIT License Copyright (c) @@ -58328,40 +59521,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-kit/log v0.2.1 - MIT - - -Copyright (c) 2021 Go -Copyright 2011 The Go Authors -Copyright 2013 The Go Authors -Copyright (c) 2014 Simon Eskildsen - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fmdlayher/ethernet v0.0.0-20220221185849-529eae5b6118 - MIT + + +Copyright (c) 2015 Matt Layher -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgolang-jwt%2Fjwt/v4 v4.5.0 - MIT - - -Copyright (c) 2021 golang-jwt -Copyright (c) 2012 Dave Grijalva - MIT License Copyright (c) @@ -58370,38 +59540,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgolang-jwt%2Fjwt/v5 v5.2.0 - MIT - - -Copyright (c) 2021 golang-jwt -Copyright (c) 2012 Dave Grijalva - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fmdlayher/ethtool v0.0.0-20210210192532-2b88debcdd43 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-logfmt/logfmt v0.5.1 - MIT - - -Copyright (c) 2015 go-logfmt -Copyright 2010 The Go Authors - +Copyright (c) 2021 Matt Layher + MIT License Copyright (c) @@ -58410,37 +59559,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-ole/go-ole v1.2.6 - MIT - - -Copyright (c) 2013-2017 Yasuhiro Matsumoto, -Copyright (c) 2016 Sebastian Schleemilch - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fmdlayher/genetlink v1.3.2 - MIT + + +Copyright (c) 2016-2022 Matt Layher -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-stack/stack v1.8.0 - MIT - - -Copyright (c) 2014 Chris Hines - MIT License Copyright (c) @@ -58449,37 +59578,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgosuri/uitable v0.0.4 - MIT - - -Copyright (c) 2015, Greg Osuri -Copyright (c) 2014 Mitchell Hashimoto - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fmdlayher/ndp v0.0.0-20200602162440-17ab9e3e5567 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 - MIT - - -Copyright (c) 2013-2020 Masterminds - +Copyright (c) 2017-2018 Matt Layher + MIT License Copyright (c) @@ -58488,38 +59597,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgregjones/httpcache v0.0.0-20190611155906-901d90724c79 - MIT - - -Copyright (c) 2012 Greg Jones (greg.jones@gmail.com) - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fmdlayher/netlink v1.7.2 - MIT + + +Copyright 2009 The Go Authors +Copyright (c) 2016-2022 Matt Layher -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-hclog v1.5.0 - MIT - - -Copyright (c) HashiCorp, Inc. -Copyright (c) 2017 HashiCorp, Inc. -Copyright (c) 2016 Uber Technologies, Inc. - MIT License Copyright (c) @@ -58528,36 +59617,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-syslog v1.0.0 - MIT - - -Copyright (c) 2014 Armon Dadgar - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fmdlayher/packet v1.1.2 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/mdns v1.0.4 - MIT - - -Copyright (c) 2014 Armon Dadgar - +Copyright (c) 2022 Matt Layher + MIT License Copyright (c) @@ -58566,41 +59636,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhpcloud/tail v1.0.0 - MIT - - -Copyright (c) 2013 99designs -Copyright (c) 2014 ActiveState -Copyright (c) 2015 HPE Software Inc. -Copyright (c) 2013 ActiveState Software Inc. -(c) Copyright 2015 Hewlett Packard Enterprise Development LP - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2fmdlayher/socket v0.4.1 - MIT + + +Copyright 2016 The Go Authors +Copyright (c) 2021 Matt Layher -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhuandu/xstrings v1.4.0 - MIT - - -Copyright 2015 Huan Du -Copyright (c) 2015 Huan - MIT License Copyright (c) @@ -58609,37 +59656,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fiancoleman/strcase v0.3.0 - MIT - - -Copyright (c) 2018 -Copyright (c) 2015 Ian Coleman - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fmicrosoft/applicationinsights-go v0.4.4 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fjellydator%2fttlcache/v3 v3.1.1 - MIT - - -Copyright (c) 2022 Jellydator - +Copyright (c) 2015-2017 Microsoft + MIT License Copyright (c) @@ -58648,36 +59675,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjeremywohl/flatten v1.0.1 - MIT - - -Copyright (c) 2016 Jeremy Wohl - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2fmicrosoft/cosesign1go v0.0.1 - MIT + + +Copyright (c) Microsoft Corporation -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjmoiron/sqlx v1.3.5 - MIT - - -Copyright (c) 2013, Jason Moiron - MIT License Copyright (c) @@ -58686,39 +59694,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjosephspurrier/goversioninfo v1.4.0 - MIT - - -(c) Microsoft Corporation -Copyright (c) 2019 Joseph -Copyright (c) 2013-2014 The rsrc -Copyright (c) 2016 Joseph Spurrier - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2fmicrosoft/didx509go v0.0.2 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjosharian/intern v1.0.0 - MIT - - -Copyright (c) 2019 Josh Bleecher Snyder - +Copyright (c) Microsoft Corporation + MIT License Copyright (c) @@ -58727,36 +59713,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjosharian/native v1.1.0 - MIT - - -Copyright 2020 Josh Bleecher Snyder - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2fmicrosoft/go-winio v0.6.1 - MIT + + +Copyright (c) 2015 Microsoft +Copyright 2013 The Go Authors -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjpillora/backoff v1.0.0 - MIT - - -Copyright (c) 2017 Jaime Pillora - MIT License Copyright (c) @@ -58765,36 +59733,20 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjsimonetti/rtnetlink v0.0.0-20211022192332-93da33804786 - MIT - - -Copyright (c) 2016 Jeroen Simonetti - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fmicrosoft/hcsshim v0.12.0-rc.3 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjson-iterator/go v1.1.12 - MIT - - -Copyright (c) 2016 json-iterator - +Copyright 2014 Docker, Inc. +Copyright (c) 2015 Microsoft +Copyright 2012-2015 Docker, Inc. +Copyright (c) 2018 Microsoft Corp. + MIT License Copyright (c) @@ -58803,37 +59755,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjsternberg/zap-logfmt v1.3.0 - MIT - - -Copyright (c) 2017 Jonathan Sternberg - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fmitchellh/copystructure v1.2.0 - MIT + + +Copyright (c) 2014 Mitchell Hashimoto -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkevinburke/ssh_config v1.2.0 - MIT - - -Copyright (c) 2017 Kevin Burke -Copyright (c) 2013 - 2017 Thomas Pelletier, Eric Anderton - MIT License Copyright (c) @@ -58842,40 +59774,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkisielk/errcheck v1.5.0 - MIT - - -Copyright (c) 2013 Kamil Kisiel - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fmitchellh/go-homedir v1.1.0 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkisielk/gotool v1.0.0 - MIT - - -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2017 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright (c) 2013 Kamil Kisiel - +Copyright (c) 2013 Mitchell Hashimoto + MIT License Copyright (c) @@ -58884,40 +59793,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fklauspost%2Fcpuid/v2 v2.0.4 - MIT - - -Copyright (c) 2015 Klaus Post -Copyright (c) 2020 Klaus Post -Copyright 2018 The Go Authors -Copyright (c) 2015- Klaus Post & Contributors - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fmitchellh/go-wordwrap v1.0.1 - MIT + + +Copyright (c) 2014 Mitchell Hashimoto -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkonsorten/go-windows-terminal-sequences v1.0.1 - MIT - - -Copyright (c) 2017 marvin + konsorten GmbH (open-source@konsorten.de) -Copyright (c) 2018 marvin + konsorten GmbH (open-source@konsorten.de) - MIT License Copyright (c) @@ -58926,37 +59812,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkr/logfmt v0.0.0-20140226030751-b84e30acd515 - MIT - - -Copyright 2010 The Go Authors -Copyright (c) 2013 Keith Rarick, Blake Mizerany - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fmitchellh/mapstructure v1.5.0 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkr/pretty v0.3.1 - MIT - - -Copyright 2012 Keith Rarick - +Copyright (c) 2013 Mitchell Hashimoto + MIT License Copyright (c) @@ -58965,36 +59831,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkr/pty v1.1.1 - MIT - - -Copyright (c) 2011 Keith Rarick - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fmitchellh/reflectwalk v1.0.2 - MIT + + +Copyright (c) 2013 Mitchell Hashimoto -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkr/text v0.2.0 - MIT - - -Copyright 2012 Keith Rarick - MIT License Copyright (c) @@ -59003,36 +59850,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fk-sone/critbitgo v1.4.0 - MIT - - -Copyright (c) 2015 Keita Sone - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fmonochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flann/builder v0.0.0-20180802200727-47ae307949d0 - MIT - - -Copyright (c) 2014-2015 Lann Martin - +Copyright (c) 2015 go-gitignore + MIT License Copyright (c) @@ -59041,36 +59869,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flann/ps v0.0.0-20150810152359-62de8c46ede0 - MIT - - -Copyright (c) 2013 Michael Hendricks - -MIT License +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. -Copyright (c) +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fmontanaflynn/stats v0.7.0 - MIT -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: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flestrrat-go%2Fbackoff/v2 v2.0.8 - MIT - - -Copyright (c) 2018 lestrrat - MIT License Copyright (c) @@ -59079,36 +59887,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flestrrat-go/blackmagic v1.0.1 - MIT - - -Copyright (c) 2021 lestrrat-go - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fmorikuni/aec v1.0.0 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flestrrat-go/httpcc v1.0.1 - MIT - - -Copyright (c) 2020 lestrrat-go - +Copyright (c) 2016 Taihei Morikuni + MIT License Copyright (c) @@ -59117,37 +59906,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flestrrat-go/iter v1.0.2 - MIT - - -Copyright (c) 2020 lestrrat-go - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fniemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e - MIT + + +Copyright 2012 Keith Rarick -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flestrrat-go/jwx v1.2.26 - MIT - - -Copyright (c) 2015 lestrrat -Copyright 2016 The Go Authors - MIT License Copyright (c) @@ -59156,38 +59925,22 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flestrrat-go/option v1.0.1 - MIT - - -Copyright (c) 2021 lestrrat-go - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fnxadm/tail v1.4.11 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2flib/pq v1.10.9 - MIT - - -Copyright (c) 2011-2013, pq Contributors -Portions Copyright (c) 2011 Blake Mizerany -Copyright (c) 2014 - Gustavo Niemeyer - +Copyright (c) 2013 99designs +Copyright (c) 2014 ActiveState +Copyright (c) 2015 HPE Software Inc. +Copyright (c) 2019 FOSS contributors +Copyright (c) 2013 ActiveState Software Inc. +(c) Copyright 2015 Hewlett Packard Enterprise Development LP + MIT License Copyright (c) @@ -59196,37 +59949,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flithammer/dedent v1.1.0 - MIT - - -Copyright (c) 2018 Peter Lithammer - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Folekukonko/tablewriter v0.0.5 - MIT + + +Copyright 2014 Oleku Konko +Copyright (c) 2014 by Oleku Konko -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmailru/easyjson v0.7.7 - MIT - - -Copyright (c) 2016 Mail.Ru Group -Copyright (c) 2009 The Go Authors - MIT License Copyright (c) @@ -59235,36 +59969,20 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmakenowjust/heredoc v1.0.0 - MIT - - -Copyright (c) 2014-2019 TSUYUSATO Kitsune - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fonsi/ginkgo v1.16.5 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmarkbates/errx v1.1.0 - MIT - - -Copyright (c) 2019 Mark Bates - +Copyright 2013 The Go Authors +Copyright (c) 2013-2014 Onsi Fakhouri +Copyright (c) 2016 Yasuhiro Matsumoto +Copyright (c) Yasuhiro MATSUMOTO + MIT License Copyright (c) @@ -59273,36 +59991,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmarkbates/oncer v1.0.0 - MIT - - -Copyright (c) 2019 Mark Bates - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fpelletier%2Fgo-toml/v2 v2.1.0 - MIT + + +Copyright (c) 2021 - 2023 Thomas Pelletier -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmarkbates/safe v1.0.1 - MIT - - -Copyright (c) 2018 Mark Bates - MIT License Copyright (c) @@ -59311,35 +60010,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmasterminds%2Fsemver/v3 v3.2.1 - MIT - - -Copyright (c) 2014-2019, Matt Butcher and Matt Farina - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fpeterbourgon/diskv v2.0.1+incompatible - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmasterminds%2Fsprig/v3 v3.2.3 - MIT - - - +Copyright (c) 2011-2012 Peter Bourgon + MIT License Copyright (c) @@ -59348,38 +60029,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fmasterminds/squirrel v1.5.4 - MIT - - -Copyright (c) 2015-2016, Google -Copyright (c) 2014-2015, Lann Martin -Copyright (c) 2015, Matt Farina and Matt Butcher - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fposener/complete v1.2.3 - MIT + + +Copyright (c) 2017 Eyal Posener -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmasterminds/vcs v1.13.3 - MIT - - -Copyright (c) 2014-2015, Matt Butcher and Matt Farina - MIT License Copyright (c) @@ -59388,36 +60048,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmattn/go-colorable v0.1.13 - MIT - - -Copyright (c) 2016 Yasuhiro Matsumoto - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fpower-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmattn/go-isatty v0.0.17 - MIT - - -Copyright (c) Yasuhiro MATSUMOTO - +Copyright (c) 2020 Power DevOps +Copyright 2020 Power-Devops.com + MIT License Copyright (c) @@ -59426,36 +60068,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmattn/go-oci8 v0.1.1 - MIT - - -Copyright (c) 2014-2018 Yasuhiro Matsumoto, http://mattn.kaoriya.net - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fpoy/onpar v1.1.2 - MIT + + +Copyright (c) 2016 Andrew Poydence -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmattn/go-runewidth v0.0.9 - MIT - - -Copyright (c) 2016 Yasuhiro Matsumoto - MIT License Copyright (c) @@ -59464,35 +60087,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmattn/go-shellwords v1.0.12 - MIT - - -Copyright (c) 2017 Yasuhiro Matsumoto - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2frubenv/sql-migrate v1.5.2 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmattn/go-sqlite3 v1.14.15 - MIT - - - +Copyright (c) 2012-2014 by Liam Staskawicz +Copyright (c) 2014-2017 by Ruben Vermeersch +Copyright (c) 2014-2021 by Ruben Vermeersch + MIT License Copyright (c) @@ -59501,37 +60108,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmdlayher/arp v0.0.0-20220221190821-c37aaafac7f9 - MIT - - -Copyright (c) 2015 Matt Layher -Copyright (c) 2012 The Go Authors - -MIT License +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. -Copyright (c) +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fryanuber/columnize v0.0.0-20160712163229-9b3edd62028f - MIT -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: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmdlayher/ethernet v0.0.0-20220221185849-529eae5b6118 - MIT - - -Copyright (c) 2015 Matt Layher - MIT License Copyright (c) @@ -59540,36 +60126,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmdlayher/ethtool v0.0.0-20210210192532-2b88debcdd43 - MIT - - -Copyright (c) 2021 Matt Layher - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fsagikazarmark/crypt v0.17.0 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmdlayher/genetlink v1.3.2 - MIT - - -Copyright (c) 2016-2022 Matt Layher - +Copyright (c) 2014 XOR Data Exchange, Inc. + MIT License Copyright (c) @@ -59578,37 +60145,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmdlayher/ndp v0.0.0-20200602162440-17ab9e3e5567 - MIT - - -Copyright (c) 2017-2018 Matt Layher - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fsagikazarmark/locafero v0.4.0 - MIT + + +Copyright (c) 2023 Mark Sagi-Kazar -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmdlayher/netlink v1.7.2 - MIT - - -Copyright 2009 The Go Authors -Copyright (c) 2016-2022 Matt Layher - MIT License Copyright (c) @@ -59617,37 +60164,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmdlayher/packet v1.1.2 - MIT - - -Copyright (c) 2022 Matt Layher - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fshopify/logrus-bugsnag v0.0.0-20171204204709-577dee27f20d - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fmdlayher/socket v0.4.1 - MIT - - -Copyright 2016 The Go Authors -Copyright (c) 2021 Matt Layher - +Copyright (c) 2016 Shopify + MIT License Copyright (c) @@ -59656,36 +60183,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmicrosoft/applicationinsights-go v0.4.4 - MIT - - -Copyright (c) 2015-2017 Microsoft - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fshopspring/decimal v1.3.1 - MIT + + +Copyright 2009 The Go Authors +Copyright (c) 2013 Oguz Bilgic +Copyright (c) 2015 Spring, Inc. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fmicrosoft/cosesign1go v0.0.1 - MIT - - -Copyright (c) Microsoft Corporation - MIT License Copyright (c) @@ -59694,37 +60204,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fmicrosoft/didx509go v0.0.2 - MIT - - -Copyright (c) Microsoft Corporation - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2fsirupsen/logrus v1.9.3 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fmicrosoft/go-winio v0.6.1 - MIT - - -Copyright (c) 2015 Microsoft -Copyright 2013 The Go Authors - +Copyright (c) 2014 Simon Eskildsen +Copyright (c) 2012 Miki Tebeka + MIT License Copyright (c) @@ -59733,39 +60224,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmicrosoft/hcsshim v0.12.0-rc.3 - MIT - - -Copyright 2014 Docker, Inc. -Copyright (c) 2015 Microsoft -Copyright 2012-2015 Docker, Inc. -Copyright (c) 2018 Microsoft Corp. - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fsourcegraph/conc v0.3.0 - MIT + + +Copyright (c) 2023 Sourcegraph -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmitchellh/copystructure v1.2.0 - MIT - - -Copyright (c) 2014 Mitchell Hashimoto - MIT License Copyright (c) @@ -59774,36 +60243,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmitchellh/go-homedir v1.1.0 - MIT - - -Copyright (c) 2013 Mitchell Hashimoto - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fspf13/cast v1.6.0 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmitchellh/go-wordwrap v1.0.1 - MIT - - -Copyright (c) 2014 Mitchell Hashimoto - +Copyright 2011 The Go Authors +Copyright (c) 2014 Steve Francia +Copyright (c) 2014 Steve Francia + MIT License Copyright (c) @@ -59812,36 +60264,20 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmitchellh/mapstructure v1.5.0 - MIT - - -Copyright (c) 2013 Mitchell Hashimoto - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2fspf13/viper v1.18.2 - MIT + + +Copyright (c) 2014 Steve Francia +Copyright (c) 2014 Steve Francia +Copyright (c) 2015 Steve Francia +Copyright (c) 2016 Steve Francia -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmitchellh/reflectwalk v1.0.2 - MIT - - -Copyright (c) 2013 Mitchell Hashimoto - MIT License Copyright (c) @@ -59850,35 +60286,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmonochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 - MIT - - -Copyright (c) 2015 go-gitignore - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fstoewer/go-strcase v1.2.0 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fmontanaflynn/stats v0.7.0 - MIT - - - +Copyright (c) 2017, A. Stoewer +Copyright (c) 2017, Adrian Stoewer + MIT License Copyright (c) @@ -59887,36 +60306,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmorikuni/aec v1.0.0 - MIT - - -Copyright (c) 2016 Taihei Morikuni - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fstretchr/objx v0.5.0 - MIT + + +Copyright (c) 2014 Stretchr, Inc. +Copyright (c) 2017-2018 objx contributors -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fniemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e - MIT - - -Copyright 2012 Keith Rarick - MIT License Copyright (c) @@ -59925,42 +60326,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fnxadm/tail v1.4.11 - MIT - - -Copyright (c) 2013 99designs -Copyright (c) 2014 ActiveState -Copyright (c) 2015 HPE Software Inc. -Copyright (c) 2019 FOSS contributors -Copyright (c) 2013 ActiveState Software Inc. -(c) Copyright 2015 Hewlett Packard Enterprise Development LP - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fstretchr/testify v1.8.4 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Folekukonko/tablewriter v0.0.5 - MIT - - -Copyright 2014 Oleku Konko -Copyright (c) 2014 by Oleku Konko - +Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors + MIT License Copyright (c) @@ -59969,39 +60345,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fonsi/ginkgo v1.16.5 - MIT - - -Copyright 2013 The Go Authors -Copyright (c) 2013-2014 Onsi Fakhouri -Copyright (c) 2016 Yasuhiro Matsumoto -Copyright (c) Yasuhiro MATSUMOTO - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fsubosito/gotenv v1.6.0 - MIT + + +Copyright (c) 2013 Alif Rachmawadi -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fpelletier%2Fgo-toml/v2 v2.1.0 - MIT - - -Copyright (c) 2021 - 2023 Thomas Pelletier - MIT License Copyright (c) @@ -60010,36 +60364,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fpeterbourgon/diskv v2.0.1+incompatible - MIT - - -Copyright (c) 2011-2012 Peter Bourgon - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Ftchap%2Fgo-patricia/v2 v2.3.1 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fposener/complete v1.2.3 - MIT - - -Copyright (c) 2017 Eyal Posener - +Copyright (c) 2014 The +Copyright (c) 2014 The go-patricia + MIT License Copyright (c) @@ -60048,37 +60384,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fpower-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c - MIT - - -Copyright (c) 2020 Power DevOps -Copyright 2020 Power-Devops.com - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Ftedsuo/ifrit v0.0.0-20180802180643-bea94bb476cc - MIT + + +Copyright (c) 2014 Theodore Young -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fpoy/onpar v1.1.2 - MIT - - -Copyright (c) 2016 Andrew Poydence - MIT License Copyright (c) @@ -60087,37 +60403,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2frubenv/sql-migrate v1.5.2 - MIT - - -Copyright (c) 2012-2014 by Liam Staskawicz -Copyright (c) 2014-2017 by Ruben Vermeersch -Copyright (c) 2014-2021 by Ruben Vermeersch - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Ftidwall/gjson v1.17.0 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fryanuber/columnize v0.0.0-20160712163229-9b3edd62028f - MIT - - - +Copyright (c) 2016 Josh Baker + MIT License Copyright (c) @@ -60126,36 +60422,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fsagikazarmark/crypt v0.17.0 - MIT - - -Copyright (c) 2014 XOR Data Exchange, Inc. - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Ftidwall/match v1.1.1 - MIT + + +Copyright (c) 2016 Josh Baker -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fsagikazarmark/locafero v0.4.0 - MIT - - -Copyright (c) 2023 Mark Sagi-Kazar - MIT License Copyright (c) @@ -60164,38 +60441,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fshopify/logrus-bugsnag v0.0.0-20171204204709-577dee27f20d - MIT - - -Copyright (c) 2016 Shopify - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Ftidwall/pretty v1.2.0 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fshopspring/decimal v1.3.1 - MIT - - -Copyright 2009 The Go Authors -Copyright (c) 2013 Oguz Bilgic -Copyright (c) 2015 Spring, Inc. - +Copyright (c) 2017 Josh Baker + MIT License Copyright (c) @@ -60204,37 +60460,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fsirupsen/logrus v1.9.3 - MIT - - -Copyright (c) 2014 Simon Eskildsen -Copyright (c) 2012 Miki Tebeka - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Ftidwall/sjson v1.2.5 - MIT + + +Copyright (c) 2016 Josh Baker -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fsourcegraph/conc v0.3.0 - MIT - - -Copyright (c) 2023 Sourcegraph - MIT License Copyright (c) @@ -60243,41 +60479,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fspf13/cast v1.6.0 - MIT - - -Copyright 2011 The Go Authors -Copyright (c) 2014 Steve Francia -Copyright (c) 2014 Steve Francia - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Ftmc/grpc-websocket-proxy v0.0.0-20220101234140-673ab2c3ae75 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fspf13/viper v1.18.2 - MIT - - -Copyright (c) 2014 Steve Francia -Copyright (c) 2014 Steve Francia -Copyright (c) 2015 Steve Francia -Copyright (c) 2016 Steve Francia - +Copyright (c) 2016 Travis Cline + MIT License Copyright (c) @@ -60286,38 +60498,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fstoewer/go-strcase v1.2.0 - MIT - - -Copyright (c) 2017, A. Stoewer -Copyright (c) 2017, Adrian Stoewer - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Ftv42/httpunix v0.0.0-20150427012821-b75d8614f926 - MIT + + +Copyright (c) 2013-2015 Tommi Virtanen -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fstretchr/objx v0.5.0 - MIT - - -Copyright (c) 2014 Stretchr, Inc. -Copyright (c) 2017-2018 objx contributors - MIT License Copyright (c) @@ -60326,36 +60517,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fstretchr/testify v1.8.4 - MIT - - -Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Furfave/cli v1.22.14 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fsubosito/gotenv v1.6.0 - MIT - - -Copyright (c) 2013 Alif Rachmawadi - +(c) 1999 Serious Enterprise +Copyright (c) 2023 Jeremy Saenz & Contributors + MIT License Copyright (c) @@ -60364,37 +60537,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Ftchap%2Fgo-patricia/v2 v2.3.1 - MIT - - -Copyright (c) 2014 The -Copyright (c) 2014 The go-patricia - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fvektah%2Fgqlparser/v2 v2.4.5 - MIT + + +Copyright (c) 2018 Adam Scarr +Copyright (c) 2015, Facebook, Inc. +Copyright (c) 2015-present, Facebook, Inc. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Ftedsuo/ifrit v0.0.0-20180802180643-bea94bb476cc - MIT - - -Copyright (c) 2014 Theodore Young - MIT License Copyright (c) @@ -60403,36 +60558,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Ftidwall/gjson v1.17.0 - MIT - - -Copyright (c) 2016 Josh Baker - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fx448/float16 v0.8.4 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Ftidwall/match v1.1.1 - MIT - - -Copyright (c) 2016 Josh Baker - +Copyright 2019 Montgomery Edwards448 and Faye Amacker +Copyright (c) 2019 Montgomery Edwards448 and Faye Amacker + MIT License Copyright (c) @@ -60441,36 +60578,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Ftidwall/pretty v1.2.0 - MIT - - -Copyright (c) 2017 Josh Baker - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fxiang90/probing v0.0.0-20190116061207-43a291ad63a2 - MIT + + +Copyright (c) 2015 Xiang Li -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Ftidwall/sjson v1.2.5 - MIT - - -Copyright (c) 2016 Josh Baker - MIT License Copyright (c) @@ -60479,36 +60597,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Ftmc/grpc-websocket-proxy v0.0.0-20220101234140-673ab2c3ae75 - MIT - - -Copyright (c) 2016 Travis Cline - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fxlab/treeprint v1.2.0 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Ftv42/httpunix v0.0.0-20150427012821-b75d8614f926 - MIT - - -Copyright (c) 2013-2015 Tommi Virtanen - +Copyright (c) 2016 Maxim Kupriianov + MIT License Copyright (c) @@ -60517,39 +60616,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Furfave/cli v1.22.14 - MIT - - -(c) 1999 Serious Enterprise -Copyright (c) 2023 Jeremy Saenz & Contributors - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fyoumark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d - MIT + + +Copyright (c) 2014 youmark -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fvektah%2Fgqlparser/v2 v2.4.5 - MIT - - -Copyright (c) 2018 Adam Scarr -Copyright (c) 2015, Facebook, Inc. -Copyright (c) 2015-present, Facebook, Inc. - MIT License Copyright (c) @@ -60558,37 +60635,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fx448/float16 v0.8.4 - MIT - - -Copyright 2019 Montgomery Edwards448 and Faye Amacker -Copyright (c) 2019 Montgomery Edwards448 and Faye Amacker - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fyuin/goldmark v1.4.13 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fxiang90/probing v0.0.0-20190116061207-43a291ad63a2 - MIT - - -Copyright (c) 2015 Xiang Li - +Copyright (c) 2019 Yusuke Inuzuka + MIT License Copyright (c) @@ -60597,36 +60654,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fxlab/treeprint v1.2.0 - MIT - - -Copyright (c) 2016 Maxim Kupriianov - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +github.com%2Fyusufpapurcu/wmi v1.2.3 - MIT + + +Copyright (c) 2013 Stack Exchange -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fyoumark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d - MIT - - -Copyright (c) 2014 youmark - MIT License Copyright (c) @@ -60635,36 +60673,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fyuin/goldmark v1.4.13 - MIT - - -Copyright (c) 2019 Yusuke Inuzuka - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- + +github.com%2Fzeebo/errs v1.3.0 - MIT -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fyusufpapurcu/wmi v1.2.3 - MIT - - -Copyright (c) 2013 Stack Exchange - +Copyright (c) 2017 The Authors + MIT License Copyright (c) @@ -60673,36 +60692,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fzeebo/errs v1.3.0 - MIT - - -Copyright (c) 2017 The Authors - -MIT License +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. -Copyright (c) +--------------------------------------------------------- -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +global-dirs 3.0.1 - MIT +https://github.com/sindresorhus/global-dirs#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -global-dirs 3.0.1 - MIT -https://github.com/sindresorhus/global-dirs#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -60712,19 +60712,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -global-modules 2.0.0 - MIT -https://github.com/jonschlinkert/global-modules - -Copyright (c) 2015-2017 Jon Schlinkert -Copyright (c) 2015-present, Jon Schlinkert -Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +global-modules 2.0.0 - MIT +https://github.com/jonschlinkert/global-modules + +Copyright (c) 2015-2017 Jon Schlinkert +Copyright (c) 2015-present, Jon Schlinkert +Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2015-present, Jon Schlinkert. @@ -60746,19 +60746,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -global-prefix 3.0.0 - MIT -https://github.com/jonschlinkert/global-prefix - -Copyright (c) 2015-present Jon Schlinkert -Copyright (c) 2015-present, Jon Schlinkert -Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +global-prefix 3.0.0 - MIT +https://github.com/jonschlinkert/global-prefix + +Copyright (c) 2015-present Jon Schlinkert +Copyright (c) 2015-present, Jon Schlinkert +Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2015-present, Jon Schlinkert. @@ -60780,18 +60780,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -globals 11.12.0 - MIT -https://github.com/sindresorhus/globals#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +globals 11.12.0 - MIT +https://github.com/sindresorhus/globals#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -60801,17 +60801,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -globby 11.1.0 - MIT -https://github.com/sindresorhus/globby#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +globby 11.1.0 - MIT +https://github.com/sindresorhus/globby#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -60821,17 +60821,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -globby 13.2.2 - MIT -https://github.com/sindresorhus/globby#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +globby 13.2.2 - MIT +https://github.com/sindresorhus/globby#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -60841,17 +60841,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.etcd.io/bbolt v1.3.8 - MIT - - -Copyright (c) 2013 Ben Johnson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.etcd.io/bbolt v1.3.8 - MIT + + +Copyright (c) 2013 Ben Johnson + MIT License Copyright (c) @@ -60860,17 +60860,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 - MIT - - -Copyright (c) 2015 Andrew Smith - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 - MIT + + +Copyright (c) 2015 Andrew Smith + MIT License Copyright (c) @@ -60879,24 +60879,24 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.uber.org/atomic v1.10.0 - MIT - - -Copyright (c) 2016 Uber Technologies, Inc. -Copyright (c) 2020 Uber Technologies, Inc. -Copyright (c) 2021 Uber Technologies, Inc. -Copyright (c) 2022 Uber Technologies, Inc. -Copyright (c) 2016-2020 Uber Technologies, Inc. -Copyright (c) 2020-2022 Uber Technologies, Inc. -Copyright (c) 2021-2022 Uber Technologies, Inc. -Copyright (c) 2020- .ToYear Uber Technologies, Inc. - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.uber.org/atomic v1.10.0 - MIT + + +Copyright (c) 2016 Uber Technologies, Inc. +Copyright (c) 2020 Uber Technologies, Inc. +Copyright (c) 2021 Uber Technologies, Inc. +Copyright (c) 2022 Uber Technologies, Inc. +Copyright (c) 2016-2020 Uber Technologies, Inc. +Copyright (c) 2020-2022 Uber Technologies, Inc. +Copyright (c) 2021-2022 Uber Technologies, Inc. +Copyright (c) 2020- .ToYear Uber Technologies, Inc. + MIT License Copyright (c) @@ -60905,24 +60905,24 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.uber.org/dig v1.17.1 - MIT - - -Copyright (c) Uber Technologies, Inc. -Copyright (c) 2019 Uber Technologies, Inc. -Copyright (c) 2020 Uber Technologies, Inc. -Copyright (c) 2021 Uber Technologies, Inc. -Copyright (c) 2022 Uber Technologies, Inc. -Copyright (c) 2023 Uber Technologies, Inc. -Copyright (c) 2017-2018 Uber Technologies, Inc. -Copyright (c) 2019-2021 Uber Technologies, Inc. - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.uber.org/dig v1.17.1 - MIT + + +Copyright (c) Uber Technologies, Inc. +Copyright (c) 2019 Uber Technologies, Inc. +Copyright (c) 2020 Uber Technologies, Inc. +Copyright (c) 2021 Uber Technologies, Inc. +Copyright (c) 2022 Uber Technologies, Inc. +Copyright (c) 2023 Uber Technologies, Inc. +Copyright (c) 2017-2018 Uber Technologies, Inc. +Copyright (c) 2019-2021 Uber Technologies, Inc. + MIT License Copyright (c) @@ -60931,21 +60931,21 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.uber.org/goleak v1.3.0 - MIT - - -Copyright (c) 2017 Uber Technologies, Inc. -Copyright (c) 2018 Uber Technologies, Inc. -Copyright (c) 2023 Uber Technologies, Inc. -Copyright (c) 2017-2023 Uber Technologies, Inc. -Copyright (c) 2021-2023 Uber Technologies, Inc. - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.uber.org/goleak v1.3.0 - MIT + + +Copyright (c) 2017 Uber Technologies, Inc. +Copyright (c) 2018 Uber Technologies, Inc. +Copyright (c) 2023 Uber Technologies, Inc. +Copyright (c) 2017-2023 Uber Technologies, Inc. +Copyright (c) 2021-2023 Uber Technologies, Inc. + MIT License Copyright (c) @@ -60954,22 +60954,22 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.uber.org/multierr v1.11.0 - MIT - - -Copyright (c) 2017 Uber Technologies, Inc. -Copyright (c) 2020 Uber Technologies, Inc. -Copyright (c) 2021 Uber Technologies, Inc. -Copyright (c) 2023 Uber Technologies, Inc. -Copyright (c) 2017-2021 Uber Technologies, Inc. -Copyright (c) 2017-2023 Uber Technologies, Inc. - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.uber.org/multierr v1.11.0 - MIT + + +Copyright (c) 2017 Uber Technologies, Inc. +Copyright (c) 2020 Uber Technologies, Inc. +Copyright (c) 2021 Uber Technologies, Inc. +Copyright (c) 2023 Uber Technologies, Inc. +Copyright (c) 2017-2021 Uber Technologies, Inc. +Copyright (c) 2017-2023 Uber Technologies, Inc. + MIT License Copyright (c) @@ -60978,27 +60978,27 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.uber.org/zap v1.26.0 - MIT - - -Copyright (c) Uber Technologies, Inc. -Copyright (c) 2016 Uber Technologies, Inc. -Copyright (c) 2017 Uber Technologies, Inc. -Copyright (c) 2018 Uber Technologies, Inc. -Copyright (c) 2020 Uber Technologies, Inc. -Copyright (c) 2021 Uber Technologies, Inc. -Copyright (c) 2022 Uber Technologies, Inc. -Copyright (c) 2023 Uber Technologies, Inc. -Copyright (c) 2016-2017 Uber Technologies, Inc. -Copyright (c) 2016-2022 Uber Technologies, Inc. -Copyright (c) 2016, 2017 Uber Technologies, Inc. - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.uber.org/zap v1.26.0 - MIT + + +Copyright (c) Uber Technologies, Inc. +Copyright (c) 2016 Uber Technologies, Inc. +Copyright (c) 2017 Uber Technologies, Inc. +Copyright (c) 2018 Uber Technologies, Inc. +Copyright (c) 2020 Uber Technologies, Inc. +Copyright (c) 2021 Uber Technologies, Inc. +Copyright (c) 2022 Uber Technologies, Inc. +Copyright (c) 2023 Uber Technologies, Inc. +Copyright (c) 2016-2017 Uber Technologies, Inc. +Copyright (c) 2016-2022 Uber Technologies, Inc. +Copyright (c) 2016, 2017 Uber Technologies, Inc. + MIT License Copyright (c) @@ -61007,19 +61007,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.zx2c4.com%2Fwireguard/wgctrl v0.0.0-20230429144221-925a1e7659e6 - MIT - - -Copyright (c) 2018-2022 Matt Layher -Copyright (c) 2017-2021 WireGuard LLC. -Copyright (C) 2017-2021 WireGuard LLC. All Rights Reserved. - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.zx2c4.com%2Fwireguard/wgctrl v0.0.0-20230429144221-925a1e7659e6 - MIT + + +Copyright (c) 2018-2022 Matt Layher +Copyright (c) 2017-2021 WireGuard LLC. +Copyright (C) 2017-2021 WireGuard LLC. All Rights Reserved. + MIT License Copyright (c) @@ -61028,18 +61028,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 - MIT - - -Copyright (c) 2017-2021 WireGuard LLC. -Copyright (C) 2017-2021 WireGuard LLC. All Rights Reserved. - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 - MIT + + +Copyright (c) 2017-2021 WireGuard LLC. +Copyright (C) 2017-2021 WireGuard LLC. All Rights Reserved. + MIT License Copyright (c) @@ -61048,17 +61048,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopd 1.0.1 - MIT -https://github.com/ljharb/gopd#readme - -Copyright (c) 2022 Jordan Harband - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopd 1.0.1 - MIT +https://github.com/ljharb/gopd#readme + +Copyright (c) 2022 Jordan Harband + MIT License Copyright (c) 2022 Jordan Harband @@ -61080,17 +61080,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in%2Falecthomas/kingpin.v2 v2.2.6 - MIT - - -Copyright (c) 2014 Alec Thomas - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in%2Falecthomas/kingpin.v2 v2.2.6 - MIT + + +Copyright (c) 2014 Alec Thomas + MIT License Copyright (c) @@ -61099,17 +61099,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in%2fnatefinch/lumberjack.v2 v2.2.1 - MIT - - -Copyright (c) 2014 Nate Finch - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in%2fnatefinch/lumberjack.v2 v2.2.1 - MIT + + +Copyright (c) 2014 Nate Finch + MIT License Copyright (c) @@ -61118,17 +61118,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -got 14.0.0 - MIT -https://github.com/sindresorhus/got#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +got 14.0.0 - MIT +https://github.com/sindresorhus/got#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -61138,18 +61138,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -gray-matter 4.0.3 - MIT -https://github.com/jonschlinkert/gray-matter - -Copyright (c) 2014-2018, Jon Schlinkert -Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +gray-matter 4.0.3 - MIT +https://github.com/jonschlinkert/gray-matter + +Copyright (c) 2014-2018, Jon Schlinkert +Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2014-2018, Jon Schlinkert. @@ -61171,17 +61171,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -gzip-size 6.0.0 - MIT -https://github.com/sindresorhus/gzip-size#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +gzip-size 6.0.0 - MIT +https://github.com/sindresorhus/gzip-size#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -61191,17 +61191,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -handle-thing 2.0.1 - MIT -https://github.com/spdy-http2/handle-thing#readme - -Copyright Fedor Indutny, 2015 - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +handle-thing 2.0.1 - MIT +https://github.com/spdy-http2/handle-thing#readme + +Copyright Fedor Indutny, 2015 + MIT License Copyright (c) @@ -61210,18 +61210,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -has-flag 4.0.0 - MIT -https://github.com/sindresorhus/has-flag#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +has-flag 4.0.0 - MIT +https://github.com/sindresorhus/has-flag#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -61231,17 +61231,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -hasown 2.0.0 - MIT -https://github.com/inspect-js/hasOwn#readme - -Copyright (c) Jordan Harband and contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +hasown 2.0.0 - MIT +https://github.com/inspect-js/hasOwn#readme + +Copyright (c) Jordan Harband and contributors + MIT License Copyright (c) Jordan Harband and contributors @@ -61263,17 +61263,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -has-property-descriptors 1.0.1 - MIT -https://github.com/inspect-js/has-property-descriptors#readme - -Copyright (c) 2022 Inspect JS - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +has-property-descriptors 1.0.1 - MIT +https://github.com/inspect-js/has-property-descriptors#readme + +Copyright (c) 2022 Inspect JS + MIT License Copyright (c) 2022 Inspect JS @@ -61295,17 +61295,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -has-proto 1.0.1 - MIT -https://github.com/inspect-js/has-proto#readme - -Copyright (c) 2022 Inspect JS - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +has-proto 1.0.1 - MIT +https://github.com/inspect-js/has-proto#readme + +Copyright (c) 2022 Inspect JS + MIT License Copyright (c) 2022 Inspect JS @@ -61327,17 +61327,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -has-symbols 1.0.3 - MIT -https://github.com/ljharb/has-symbols#readme - -Copyright (c) 2016 Jordan Harband - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +has-symbols 1.0.3 - MIT +https://github.com/ljharb/has-symbols#readme + +Copyright (c) 2016 Jordan Harband + MIT License Copyright (c) 2016 Jordan Harband @@ -61359,18 +61359,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -hastscript 8.0.0 - MIT -https://github.com/syntax-tree/hastscript#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +hastscript 8.0.0 - MIT +https://github.com/syntax-tree/hastscript#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -61393,18 +61393,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -hast-util-from-parse5 8.0.1 - MIT -https://github.com/syntax-tree/hast-util-from-parse5#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +hast-util-from-parse5 8.0.1 - MIT +https://github.com/syntax-tree/hast-util-from-parse5#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -61427,18 +61427,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -hast-util-parse-selector 4.0.0 - MIT -https://github.com/syntax-tree/hast-util-parse-selector#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +hast-util-parse-selector 4.0.0 - MIT +https://github.com/syntax-tree/hast-util-parse-selector#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -61461,18 +61461,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -hast-util-raw 9.0.1 - MIT -https://github.com/syntax-tree/hast-util-raw#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +hast-util-raw 9.0.1 - MIT +https://github.com/syntax-tree/hast-util-raw#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -61495,18 +61495,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -hast-util-to-estree 3.1.0 - MIT -https://github.com/syntax-tree/hast-util-to-estree#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +hast-util-to-estree 3.1.0 - MIT +https://github.com/syntax-tree/hast-util-to-estree#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -61529,18 +61529,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -hast-util-to-jsx-runtime 2.3.0 - MIT -https://github.com/syntax-tree/hast-util-to-jsx-runtime#readme - -(c) Titus Wormer -Copyright (c) 2023 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +hast-util-to-jsx-runtime 2.3.0 - MIT +https://github.com/syntax-tree/hast-util-to-jsx-runtime#readme + +(c) Titus Wormer +Copyright (c) 2023 Titus Wormer + (The MIT License) Copyright (c) 2023 Titus Wormer @@ -61563,18 +61563,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -hast-util-to-parse5 8.0.0 - MIT -https://github.com/syntax-tree/hast-util-to-parse5#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +hast-util-to-parse5 8.0.0 - MIT +https://github.com/syntax-tree/hast-util-to-parse5#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -61597,18 +61597,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -hast-util-whitespace 3.0.0 - MIT -https://github.com/syntax-tree/hast-util-whitespace#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +hast-util-whitespace 3.0.0 - MIT +https://github.com/syntax-tree/hast-util-whitespace#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -61631,17 +61631,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -has-yarn 3.0.0 - MIT -https://github.com/sindresorhus/has-yarn#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +has-yarn 3.0.0 - MIT +https://github.com/sindresorhus/has-yarn#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -61651,17 +61651,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -he 1.2.0 - MIT -https://mths.be/he - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +he 1.2.0 - MIT +https://mths.be/he + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -61682,17 +61682,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -history 4.10.1 - MIT -https://github.com/ReactTraining/history#readme - -Copyright (c) React Training 2016-2018 - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +history 4.10.1 - MIT +https://github.com/ReactTraining/history#readme + +Copyright (c) React Training 2016-2018 + MIT License Copyright (c) React Training 2016-2018 @@ -61714,35 +61714,35 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -honnef.co%2Fgo/tools v0.4.5 - MIT - - -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2013 The Go Authors -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 Dominik Honnef -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 Dominik Honnef -Copyright 2019 The Go Authors -Copyright 2021 The Go Authors -Copyright (c) 2013 TOML authors -Copyright (c) 2014 Dmitry Vyukov -Copyright (c) 2017, Daniel Marti -Copyright (c) 2009 The Go Authors -Copyright (c) 2013 The Go Authors -Copyright (c) 2016 Dominik Honnef -Copyright (c) 2018 Dominik Honnef - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +honnef.co%2Fgo/tools v0.4.5 - MIT + + +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2013 The Go Authors +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 Dominik Honnef +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 Dominik Honnef +Copyright 2019 The Go Authors +Copyright 2021 The Go Authors +Copyright (c) 2013 TOML authors +Copyright (c) 2014 Dmitry Vyukov +Copyright (c) 2017, Daniel Marti +Copyright (c) 2009 The Go Authors +Copyright (c) 2013 The Go Authors +Copyright (c) 2016 Dominik Honnef +Copyright (c) 2018 Dominik Honnef + MIT License Copyright (c) @@ -61751,17 +61751,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -hpack.js 2.1.6 - MIT -https://github.com/indutny/hpack.js#readme - -Copyright Fedor Indutny, 2015 - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +hpack.js 2.1.6 - MIT +https://github.com/indutny/hpack.js#readme + +Copyright Fedor Indutny, 2015 + MIT License Copyright (c) @@ -61770,17 +61770,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -html-entities 2.4.0 - MIT -https://github.com/mdevils/html-entities#readme - -Copyright (c) 2021 Dulin Marat - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +html-entities 2.4.0 - MIT +https://github.com/mdevils/html-entities#readme + +Copyright (c) 2021 Dulin Marat + Copyright (c) 2021 Dulin Marat Permission is hereby granted, free of charge, to any person obtaining a copy @@ -61800,17 +61800,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -html-escaper 2.0.2 - MIT -https://github.com/WebReflection/html-escaper - -Copyright (c) 2017-present by Andrea Giammarchi - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +html-escaper 2.0.2 - MIT +https://github.com/WebReflection/html-escaper + +Copyright (c) 2017-present by Andrea Giammarchi + Copyright (C) 2017-present by Andrea Giammarchi - @WebReflection Permission is hereby granted, free of charge, to any person obtaining a copy @@ -61830,18 +61830,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -html-minifier-terser 6.1.0 - MIT -https://terser.org/html-minifier-terser/ - -Copyright (c) 2014-2016 Zoltan Frombach -Copyright (c) 2010-2019 Juriy kangax Zaytsev - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +html-minifier-terser 6.1.0 - MIT +https://terser.org/html-minifier-terser/ + +Copyright (c) 2014-2016 Zoltan Frombach +Copyright (c) 2010-2019 Juriy kangax Zaytsev + Copyright (c) 2010-2019 Juriy "kangax" Zaytsev Permission is hereby granted, free of charge, to any person @@ -61864,25 +61864,25 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -html-minifier-terser 7.2.0 - MIT -https://terser.org/html-minifier-terser/ - -Copyright (c) 2016 CoderPuppy -Copyright (c) 2014-2016 Zoltan Frombach -Copyright 2011 The Closure Compiler Authors -Copyright (c) 2010-2019 Juriy kangax Zaytsev -Copyright 2011 Mozilla Foundation and contributors -Copyright 2014 Mozilla Foundation and contributors -Copyright Joyent, Inc. and other Node contributors -Copyright 2012 (c) Mihai Bazon -Copyright 2009-2011 Mozilla Foundation and contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +html-minifier-terser 7.2.0 - MIT +https://terser.org/html-minifier-terser/ + +Copyright (c) 2016 CoderPuppy +Copyright (c) 2014-2016 Zoltan Frombach +Copyright 2011 The Closure Compiler Authors +Copyright (c) 2010-2019 Juriy kangax Zaytsev +Copyright 2011 Mozilla Foundation and contributors +Copyright 2014 Mozilla Foundation and contributors +Copyright Joyent, Inc. and other Node contributors +Copyright 2012 (c) Mihai Bazon +Copyright 2009-2011 Mozilla Foundation and contributors + Copyright (c) 2010-2019 Juriy "kangax" Zaytsev Permission is hereby granted, free of charge, to any person @@ -61905,17 +61905,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -htmlparser2 6.1.0 - MIT -https://github.com/fb55/htmlparser2#readme - -Copyright 2010, 2011, Chris Winberry - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +htmlparser2 6.1.0 - MIT +https://github.com/fb55/htmlparser2#readme + +Copyright 2010, 2011, Chris Winberry + Copyright 2010, 2011, Chris Winberry . All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to @@ -61933,17 +61933,17 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -htmlparser2 8.0.2 - MIT -https://github.com/fb55/htmlparser2#readme - -Copyright 2010, 2011, Chris Winberry - +IN THE SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +htmlparser2 8.0.2 - MIT +https://github.com/fb55/htmlparser2#readme + +Copyright 2010, 2011, Chris Winberry + Copyright 2010, 2011, Chris Winberry . All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to @@ -61961,17 +61961,17 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -html-tags 3.3.1 - MIT -https://github.com/sindresorhus/html-tags#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - +IN THE SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +html-tags 3.3.1 - MIT +https://github.com/sindresorhus/html-tags#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -61981,18 +61981,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -html-void-elements 3.0.0 - MIT -https://github.com/wooorm/html-void-elements#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +html-void-elements 3.0.0 - MIT +https://github.com/wooorm/html-void-elements#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -62015,17 +62015,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -html-webpack-plugin 5.6.0 - MIT -https://github.com/jantimon/html-webpack-plugin - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +html-webpack-plugin 5.6.0 - MIT +https://github.com/jantimon/html-webpack-plugin + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -62046,17 +62046,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -http2-wrapper 2.2.1 - MIT -https://github.com/szmarczak/http2-wrapper#readme - -Copyright (c) 2018 Szymon Marczak - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +http2-wrapper 2.2.1 - MIT +https://github.com/szmarczak/http2-wrapper#readme + +Copyright (c) 2018 Szymon Marczak + MIT License Copyright (c) 2018 Szymon Marczak @@ -62078,17 +62078,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -http-deceiver 1.2.7 - MIT -https://github.com/indutny/http-deceiver#readme - -Copyright Fedor Indutny, 2015 - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +http-deceiver 1.2.7 - MIT +https://github.com/indutny/http-deceiver#readme + +Copyright Fedor Indutny, 2015 + MIT License Copyright (c) @@ -62097,20 +62097,20 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -http-errors 1.6.3 - MIT -https://github.com/jshttp/http-errors#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2016 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong me@jongleberry.com -Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +http-errors 1.6.3 - MIT +https://github.com/jshttp/http-errors#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2016 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong me@jongleberry.com +Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com + The MIT License (MIT) @@ -62134,20 +62134,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -http-errors 2.0.0 - MIT -https://github.com/jshttp/http-errors#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2016 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong me@jongleberry.com -Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +http-errors 2.0.0 - MIT +https://github.com/jshttp/http-errors#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2016 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong me@jongleberry.com +Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com + The MIT License (MIT) @@ -62171,18 +62171,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -http-parser-js 0.5.8 - MIT -https://github.com/creationix/http-parser-js#readme - -Copyright Joyent, Inc. and other Node contributors -Copyright (c) 2015 Tim Caswell (https://github.com/creationix) and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +http-parser-js 0.5.8 - MIT +https://github.com/creationix/http-parser-js#readme + +Copyright Joyent, Inc. and other Node contributors +Copyright (c) 2015 Tim Caswell (https://github.com/creationix) and other contributors + Copyright (c) 2015 Tim Caswell (https://github.com/creationix) and other contributors. All rights reserved. @@ -62292,19 +62292,19 @@ of nodejs/io.js: FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ - - ---------------------------------------------------------- - ---------------------------------------------------------- - -http-proxy 1.18.1 - MIT -https://github.com/http-party/node-http-proxy#readme - -Copyright (c) 2010-2016 Charlie Robbins, Jarrett Cruger & the Contributors -Copyright (c) 2010 - 2016 Charlie Robbins, Jarrett Cruger & the Contributors -copyright header of example files e592c53 (https://github.com/http-party/node-http-proxy/commit/e592c53d1a23b7920d603a9e9ac294fc0e841f6d) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +http-proxy 1.18.1 - MIT +https://github.com/http-party/node-http-proxy#readme + +Copyright (c) 2010-2016 Charlie Robbins, Jarrett Cruger & the Contributors +Copyright (c) 2010 - 2016 Charlie Robbins, Jarrett Cruger & the Contributors +copyright header of example files e592c53 (https://github.com/http-party/node-http-proxy/commit/e592c53d1a23b7920d603a9e9ac294fc0e841f6d) + node-http-proxy @@ -62328,18 +62328,18 @@ copyright header of example files e592c53 (https://github.com/http-party/node-ht 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -http-proxy-middleware 2.0.6 - MIT -https://github.com/chimurai/http-proxy-middleware#readme - -Copyright (c) 2015 Steven Chim -Copyright (c) 2015-2022 Steven Chim - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +http-proxy-middleware 2.0.6 - MIT +https://github.com/chimurai/http-proxy-middleware#readme + +Copyright (c) 2015 Steven Chim +Copyright (c) 2015-2022 Steven Chim + The MIT License (MIT) Copyright (c) 2015 Steven Chim @@ -62362,18 +62362,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -iconv-lite 0.4.24 - MIT -https://github.com/ashtuchkin/iconv-lite - -Copyright (c) Microsoft Corporation -Copyright (c) 2011 Alexander Shtuchkin - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +iconv-lite 0.4.24 - MIT +https://github.com/ashtuchkin/iconv-lite + +Copyright (c) Microsoft Corporation +Copyright (c) 2011 Alexander Shtuchkin + Copyright (c) 2011 Alexander Shtuchkin Permission is hereby granted, free of charge, to any person obtaining @@ -62395,17 +62395,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ignore 5.3.0 - MIT -https://github.com/kaelzhang/node-ignore#readme - -Copyright (c) 2013 Kael Zhang , contributors http://kael.me - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ignore 5.3.0 - MIT +https://github.com/kaelzhang/node-ignore#readme + +Copyright (c) 2013 Kael Zhang , contributors http://kael.me + Copyright (c) 2013 Kael Zhang , contributors http://kael.me/ @@ -62426,17 +62426,17 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -image-size 1.0.2 - MIT -https://github.com/image-size/image-size#readme - -Copyright (c) 2017 Aditya Yadav, http://netroy.in - +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +image-size 1.0.2 - MIT +https://github.com/image-size/image-size#readme + +Copyright (c) 2017 Aditya Yadav, http://netroy.in + The MIT License (MIT) Copyright © 2017 Aditya Yadav, http://netroy.in @@ -62446,17 +62446,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -immer 9.0.21 - MIT -https://github.com/immerjs/immer#readme - -Copyright (c) 2017 Michel Weststrate - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +immer 9.0.21 - MIT +https://github.com/immerjs/immer#readme + +Copyright (c) 2017 Michel Weststrate + MIT License Copyright (c) 2017 Michel Weststrate @@ -62478,17 +62478,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -import-fresh 3.3.0 - MIT -https://github.com/sindresorhus/import-fresh#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +import-fresh 3.3.0 - MIT +https://github.com/sindresorhus/import-fresh#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -62498,18 +62498,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -import-lazy 4.0.0 - MIT -https://github.com/sindresorhus/import-lazy#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +import-lazy 4.0.0 - MIT +https://github.com/sindresorhus/import-lazy#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -62519,17 +62519,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -imurmurhash 0.1.4 - MIT -https://github.com/jensyt/imurmurhash-js - -Copyright (c) 2013 Gary Court, Jens Taylor - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +imurmurhash 0.1.4 - MIT +https://github.com/jensyt/imurmurhash-js + +Copyright (c) 2013 Gary Court, Jens Taylor + MIT License Copyright (c) @@ -62538,18 +62538,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -indent-string 4.0.0 - MIT -https://github.com/sindresorhus/indent-string#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +indent-string 4.0.0 - MIT +https://github.com/sindresorhus/indent-string#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -62559,17 +62559,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -infima 0.2.0-alpha.43 - MIT - - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +infima 0.2.0-alpha.43 - MIT + + +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) @@ -62578,16 +62578,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -inline-style-parser 0.1.1 - MIT -https://github.com/remarkablemark/inline-style-parser#readme - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +inline-style-parser 0.1.1 - MIT +https://github.com/remarkablemark/inline-style-parser#readme + + MIT License Copyright (c) @@ -62596,17 +62596,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -interpret 1.4.0 - MIT -https://github.com/gulpjs/interpret#readme - -Copyright (c) 2014-2018 Tyler Kellen , Blaine Bublitz , and Eric Schoffstall - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +interpret 1.4.0 - MIT +https://github.com/gulpjs/interpret#readme + +Copyright (c) 2014-2018 Tyler Kellen , Blaine Bublitz , and Eric Schoffstall + Copyright (c) 2014-2018 Tyler Kellen , Blaine Bublitz , and Eric Schoffstall Permission is hereby granted, free of charge, to any person @@ -62629,17 +62629,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -invariant 2.2.4 - MIT -https://github.com/zertosh/invariant#readme - -Copyright (c) 2013-present, Facebook, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +invariant 2.2.4 - MIT +https://github.com/zertosh/invariant#readme + +Copyright (c) 2013-present, Facebook, Inc. + MIT License Copyright (c) 2013-present, Facebook, Inc. @@ -62661,17 +62661,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ipaddr.js 1.9.1 - MIT -https://github.com/whitequark/ipaddr.js#readme - -Copyright (c) 2011-2017 whitequark - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ipaddr.js 1.9.1 - MIT +https://github.com/whitequark/ipaddr.js#readme + +Copyright (c) 2011-2017 whitequark + Copyright (C) 2011-2017 whitequark Permission is hereby granted, free of charge, to any person obtaining a copy @@ -62691,17 +62691,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ipaddr.js 2.1.0 - MIT -https://github.com/whitequark/ipaddr.js#readme - -Copyright (c) 2011-2017 whitequark - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ipaddr.js 2.1.0 - MIT +https://github.com/whitequark/ipaddr.js#readme + +Copyright (c) 2011-2017 whitequark + Copyright (C) 2011-2017 whitequark Permission is hereby granted, free of charge, to any person obtaining a copy @@ -62721,18 +62721,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-alphabetical 2.0.1 - MIT -https://github.com/wooorm/is-alphabetical#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-alphabetical 2.0.1 - MIT +https://github.com/wooorm/is-alphabetical#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -62755,18 +62755,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-alphanumerical 2.0.1 - MIT -https://github.com/wooorm/is-alphanumerical#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-alphanumerical 2.0.1 - MIT +https://github.com/wooorm/is-alphanumerical#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -62789,17 +62789,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -isarray 0.0.1 - MIT -https://github.com/juliangruber/isarray - -Copyright (c) 2013 Julian Gruber - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +isarray 0.0.1 - MIT +https://github.com/juliangruber/isarray + +Copyright (c) 2013 Julian Gruber + MIT License Copyright (c) @@ -62808,17 +62808,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-arrayish 0.2.1 - MIT -https://github.com/qix-/node-is-arrayish#readme - -Copyright (c) 2015 JD Ballard - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-arrayish 0.2.1 - MIT +https://github.com/qix-/node-is-arrayish#readme + +Copyright (c) 2015 JD Ballard + The MIT License (MIT) Copyright (c) 2015 JD Ballard @@ -62840,18 +62840,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-binary-path 2.1.0 - MIT -https://github.com/sindresorhus/is-binary-path#readme - -(c) Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com) -Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-binary-path 2.1.0 - MIT +https://github.com/sindresorhus/is-binary-path#readme + +(c) Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com) +Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com) + MIT License Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com) @@ -62861,17 +62861,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-ci 3.0.1 - MIT -https://github.com/watson/is-ci - -Copyright (c) 2016-2021 Thomas Watson Steen - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-ci 3.0.1 - MIT +https://github.com/watson/is-ci + +Copyright (c) 2016-2021 Thomas Watson Steen + The MIT License (MIT) Copyright (c) 2016-2021 Thomas Watson Steen @@ -62893,17 +62893,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-core-module 2.13.1 - MIT -https://github.com/inspect-js/is-core-module - -Copyright (c) 2014 Dave Justice - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-core-module 2.13.1 - MIT +https://github.com/inspect-js/is-core-module + +Copyright (c) 2014 Dave Justice + The MIT License (MIT) Copyright (c) 2014 Dave Justice @@ -62923,18 +62923,18 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-decimal 2.0.1 - MIT -https://github.com/wooorm/is-decimal#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-decimal 2.0.1 - MIT +https://github.com/wooorm/is-decimal#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -62957,17 +62957,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-docker 2.2.1 - MIT -https://github.com/sindresorhus/is-docker#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-docker 2.2.1 - MIT +https://github.com/sindresorhus/is-docker#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -62977,18 +62977,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-extendable 0.1.1 - MIT -https://github.com/jonschlinkert/is-extendable - -Copyright (c) 2015 Jon Schlinkert -Copyright (c) 2015, Jon Schlinkert - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-extendable 0.1.1 - MIT +https://github.com/jonschlinkert/is-extendable + +Copyright (c) 2015 Jon Schlinkert +Copyright (c) 2015, Jon Schlinkert + The MIT License (MIT) Copyright (c) 2015, Jon Schlinkert. @@ -63010,18 +63010,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-extglob 2.1.1 - MIT -https://github.com/jonschlinkert/is-extglob - -Copyright (c) 2014-2016, Jon Schlinkert -Copyright (c) 2016, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-extglob 2.1.1 - MIT +https://github.com/jonschlinkert/is-extglob + +Copyright (c) 2014-2016, Jon Schlinkert +Copyright (c) 2016, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2014-2016, Jon Schlinkert @@ -63043,18 +63043,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-fullwidth-code-point 3.0.0 - MIT -https://github.com/sindresorhus/is-fullwidth-code-point#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-fullwidth-code-point 3.0.0 - MIT +https://github.com/sindresorhus/is-fullwidth-code-point#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -63064,18 +63064,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-glob 4.0.3 - MIT -https://github.com/micromatch/is-glob - -Copyright (c) 2014-2017, Jon Schlinkert -Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-glob 4.0.3 - MIT +https://github.com/micromatch/is-glob + +Copyright (c) 2014-2017, Jon Schlinkert +Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2014-2017, Jon Schlinkert. @@ -63097,18 +63097,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-hexadecimal 2.0.1 - MIT -https://github.com/wooorm/is-hexadecimal#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-hexadecimal 2.0.1 - MIT +https://github.com/wooorm/is-hexadecimal#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -63131,17 +63131,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-installed-globally 0.4.0 - MIT -https://github.com/sindresorhus/is-installed-globally#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-installed-globally 0.4.0 - MIT +https://github.com/sindresorhus/is-installed-globally#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -63151,17 +63151,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-npm 6.0.0 - MIT -https://github.com/sindresorhus/is-npm#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-npm 6.0.0 - MIT +https://github.com/sindresorhus/is-npm#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -63171,18 +63171,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-number 7.0.0 - MIT -https://github.com/jonschlinkert/is-number - -Copyright (c) 2014-present, Jon Schlinkert -Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-number 7.0.0 - MIT +https://github.com/jonschlinkert/is-number + +Copyright (c) 2014-present, Jon Schlinkert +Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2014-present, Jon Schlinkert. @@ -63204,18 +63204,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-obj 1.0.1 - MIT -https://github.com/sindresorhus/is-obj#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-obj 1.0.1 - MIT +https://github.com/sindresorhus/is-obj#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + The MIT License (MIT) Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -63237,18 +63237,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-obj 2.0.0 - MIT -https://github.com/sindresorhus/is-obj#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-obj 2.0.0 - MIT +https://github.com/sindresorhus/is-obj#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -63258,18 +63258,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -isobject 3.0.1 - MIT -https://github.com/jonschlinkert/isobject - -Copyright (c) 2014-2017, Jon Schlinkert -Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +isobject 3.0.1 - MIT +https://github.com/jonschlinkert/isobject + +Copyright (c) 2014-2017, Jon Schlinkert +Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2014-2017, Jon Schlinkert. @@ -63290,18 +63290,18 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-path-cwd 2.2.0 - MIT -https://github.com/sindresorhus/is-path-cwd#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - +THE SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-path-cwd 2.2.0 - MIT +https://github.com/sindresorhus/is-path-cwd#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -63311,17 +63311,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-path-inside 3.0.3 - MIT -https://github.com/sindresorhus/is-path-inside#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-path-inside 3.0.3 - MIT +https://github.com/sindresorhus/is-path-inside#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -63331,17 +63331,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-plain-obj 3.0.0 - MIT -https://github.com/sindresorhus/is-plain-obj#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-plain-obj 3.0.0 - MIT +https://github.com/sindresorhus/is-plain-obj#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -63351,17 +63351,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-plain-obj 4.1.0 - MIT -https://github.com/sindresorhus/is-plain-obj#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-plain-obj 4.1.0 - MIT +https://github.com/sindresorhus/is-plain-obj#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -63371,18 +63371,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-plain-object 2.0.4 - MIT -https://github.com/jonschlinkert/is-plain-object - -Copyright (c) 2014-2017, Jon Schlinkert -Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-plain-object 2.0.4 - MIT +https://github.com/jonschlinkert/is-plain-object + +Copyright (c) 2014-2017, Jon Schlinkert +Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2014-2017, Jon Schlinkert. @@ -63404,18 +63404,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-plain-object 5.0.0 - MIT -https://github.com/jonschlinkert/is-plain-object - -Copyright (c) 2014-2017, Jon Schlinkert -Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-plain-object 5.0.0 - MIT +https://github.com/jonschlinkert/is-plain-object + +Copyright (c) 2014-2017, Jon Schlinkert +Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2014-2017, Jon Schlinkert. @@ -63437,16 +63437,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-reference 3.0.2 - MIT -https://github.com/Rich-Harris/is-reference#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-reference 3.0.2 - MIT +https://github.com/Rich-Harris/is-reference#readme + + MIT License Copyright (c) @@ -63455,17 +63455,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-regexp 1.0.0 - MIT -https://github.com/sindresorhus/is-regexp - -(c) Sindre Sorhus (http://sindresorhus.com) - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-regexp 1.0.0 - MIT +https://github.com/sindresorhus/is-regexp + +(c) Sindre Sorhus (http://sindresorhus.com) + MIT License Copyright (c) @@ -63474,18 +63474,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-root 2.1.0 - MIT -https://github.com/sindresorhus/is-root#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-root 2.1.0 - MIT +https://github.com/sindresorhus/is-root#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -63495,17 +63495,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-stream 2.0.1 - MIT -https://github.com/sindresorhus/is-stream#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-stream 2.0.1 - MIT +https://github.com/sindresorhus/is-stream#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -63515,16 +63515,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-typedarray 1.0.0 - MIT -https://github.com/hughsk/is-typedarray - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-typedarray 1.0.0 - MIT +https://github.com/hughsk/is-typedarray + + This software is released under the MIT license: Permission is hereby granted, free of charge, to any person obtaining a copy of @@ -63543,17 +63543,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-wsl 2.2.0 - MIT -https://github.com/sindresorhus/is-wsl#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-wsl 2.2.0 - MIT +https://github.com/sindresorhus/is-wsl#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -63563,17 +63563,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-yarn-global 0.4.1 - MIT -https://github.com/LitoMore/is-yarn-global#readme - -Copyright (c) 2018 LitoMore - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-yarn-global 0.4.1 - MIT +https://github.com/LitoMore/is-yarn-global#readme + +Copyright (c) 2018 LitoMore + MIT License Copyright (c) 2018 LitoMore @@ -63595,17 +63595,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -jest-util 29.7.0 - MIT -https://github.com/jestjs/jest#readme - -Copyright (c) Meta Platforms, Inc. and affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +jest-util 29.7.0 - MIT +https://github.com/jestjs/jest#readme + +Copyright (c) Meta Platforms, Inc. and affiliates + MIT License Copyright (c) Meta Platforms, Inc. and affiliates. @@ -63627,17 +63627,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -jest-worker 27.5.1 - MIT -https://github.com/facebook/jest#readme - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +jest-worker 27.5.1 - MIT +https://github.com/facebook/jest#readme + +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -63659,17 +63659,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -jest-worker 29.7.0 - MIT -https://github.com/jestjs/jest#readme - -Copyright (c) Meta Platforms, Inc. and affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +jest-worker 29.7.0 - MIT +https://github.com/jestjs/jest#readme + +Copyright (c) Meta Platforms, Inc. and affiliates + MIT License Copyright (c) Meta Platforms, Inc. and affiliates. @@ -63691,19 +63691,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -jiti 1.21.0 - MIT -https://github.com/unjs/jiti#readme - -Copyright (c) 2021 Ernest -Copyright (c) Pooya Parsa -Copyright (c) 2014-present, Facebook, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +jiti 1.21.0 - MIT +https://github.com/unjs/jiti#readme + +Copyright (c) 2021 Ernest +Copyright (c) Pooya Parsa +Copyright (c) 2014-present, Facebook, Inc. + MIT License Copyright (c) Pooya Parsa @@ -63725,17 +63725,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -jsesc 0.5.0 - MIT -http://mths.be/jsesc - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +jsesc 0.5.0 - MIT +http://mths.be/jsesc + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -63756,17 +63756,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -jsesc 2.5.2 - MIT -https://mths.be/jsesc - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +jsesc 2.5.2 - MIT +https://mths.be/jsesc + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -63787,19 +63787,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -json5 2.2.3 - MIT -http://json5.org/ - -(c) 2019 Denis Pushkarev -copyright (c) 2019 Denis Pushkarev -Copyright (c) 2012-2018 Aseem Kishore, and others - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +json5 2.2.3 - MIT +http://json5.org/ + +(c) 2019 Denis Pushkarev +copyright (c) 2019 Denis Pushkarev +Copyright (c) 2012-2018 Aseem Kishore, and others + MIT License Copyright (c) 2012-2018 Aseem Kishore, and [others]. @@ -63823,17 +63823,17 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. [others]: https://github.com/json5/json5/contributors - - ---------------------------------------------------------- - ---------------------------------------------------------- - -json-buffer 3.0.1 - MIT -https://github.com/dominictarr/json-buffer - -Copyright (c) 2013 Dominic Tarr - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +json-buffer 3.0.1 - MIT +https://github.com/dominictarr/json-buffer + +Copyright (c) 2013 Dominic Tarr + Copyright (c) 2013 Dominic Tarr Permission is hereby granted, free of charge, @@ -63856,18 +63856,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -jsonfile 6.1.0 - MIT -https://github.com/jprichardson/node-jsonfile#readme - -Copyright 2012-2016, JP Richardson -Copyright (c) 2012-2015, JP Richardson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +jsonfile 6.1.0 - MIT +https://github.com/jprichardson/node-jsonfile#readme + +Copyright 2012-2016, JP Richardson +Copyright (c) 2012-2015, JP Richardson + (The MIT License) Copyright (c) 2012-2015, JP Richardson @@ -63883,18 +63883,18 @@ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -json-parse-even-better-errors 2.3.1 - MIT -https://github.com/npm/json-parse-even-better-errors#readme - -Copyright npm, Inc. -Copyright 2017 Kat Marchan - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +json-parse-even-better-errors 2.3.1 - MIT +https://github.com/npm/json-parse-even-better-errors#readme + +Copyright npm, Inc. +Copyright 2017 Kat Marchan + Copyright 2017 Kat Marchán Copyright npm, Inc. @@ -63920,17 +63920,17 @@ DEALINGS IN THE SOFTWARE. This library is a fork of 'better-json-errors' by Kat Marchán, extended and distributed under the terms of the MIT license above. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -json-schema-traverse 1.0.0 - MIT -https://github.com/epoberezkin/json-schema-traverse#readme - -Copyright (c) 2017 Evgeny Poberezkin - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +json-schema-traverse 1.0.0 - MIT +https://github.com/epoberezkin/json-schema-traverse#readme + +Copyright (c) 2017 Evgeny Poberezkin + MIT License Copyright (c) 2017 Evgeny Poberezkin @@ -63952,18 +63952,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -js-tokens 4.0.0 - MIT -https://github.com/lydell/js-tokens#readme - -Copyright 2014, 2015, 2016, 2017, 2018 Simon Lydell -Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +js-tokens 4.0.0 - MIT +https://github.com/lydell/js-tokens#readme + +Copyright 2014, 2015, 2016, 2017, 2018 Simon Lydell +Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell + The MIT License (MIT) Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell @@ -63985,17 +63985,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -js-yaml 3.14.1 - MIT -https://github.com/nodeca/js-yaml - -Copyright (c) 2011-2015 by Vitaly Puzrin - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +js-yaml 3.14.1 - MIT +https://github.com/nodeca/js-yaml + +Copyright (c) 2011-2015 by Vitaly Puzrin + (The MIT License) Copyright (C) 2011-2015 by Vitaly Puzrin @@ -64017,17 +64017,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -js-yaml 4.1.0 - MIT -https://github.com/nodeca/js-yaml#readme - -Copyright (c) 2011-2015 by Vitaly Puzrin - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +js-yaml 4.1.0 - MIT +https://github.com/nodeca/js-yaml#readme + +Copyright (c) 2011-2015 by Vitaly Puzrin + (The MIT License) Copyright (C) 2011-2015 by Vitaly Puzrin @@ -64049,17 +64049,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -keyv 4.5.4 - MIT -https://github.com/jaredwray/keyv - -(c) Jared Wray - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +keyv 4.5.4 - MIT +https://github.com/jaredwray/keyv + +(c) Jared Wray + MIT License Copyright (c) @@ -64068,18 +64068,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -kind-of 6.0.3 - MIT -https://github.com/jonschlinkert/kind-of - -Copyright (c) 2014-2017, Jon Schlinkert -Copyright (c) 2020, Jon Schlinkert (https://github.com/jonschlinkert) - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +kind-of 6.0.3 - MIT +https://github.com/jonschlinkert/kind-of + +Copyright (c) 2014-2017, Jon Schlinkert +Copyright (c) 2020, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2014-2017, Jon Schlinkert. @@ -64101,18 +64101,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -kleur 3.0.3 - MIT -https://github.com/lukeed/kleur#readme - -(c) Luke Edwards (https://lukeed.com) -Copyright (c) Luke Edwards (lukeed.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +kleur 3.0.3 - MIT +https://github.com/lukeed/kleur#readme + +(c) Luke Edwards (https://lukeed.com) +Copyright (c) Luke Edwards (lukeed.com) + The MIT License (MIT) Copyright (c) Luke Edwards (lukeed.com) @@ -64134,17 +64134,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -latest-version 7.0.0 - MIT -https://github.com/sindresorhus/latest-version#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +latest-version 7.0.0 - MIT +https://github.com/sindresorhus/latest-version#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -64154,18 +64154,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -launch-editor 2.6.1 - MIT -https://github.com/yyx990803/launch-editor#readme - -Copyright (c) 2017-present, Yuxi -Copyright (c) 2015-present, Facebook, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +launch-editor 2.6.1 - MIT +https://github.com/yyx990803/launch-editor#readme + +Copyright (c) 2017-present, Yuxi +Copyright (c) 2015-present, Facebook, Inc. + The MIT License (MIT) Copyright (c) 2017-present, Yuxi (Evan) You @@ -64187,18 +64187,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -leven 3.1.0 - MIT -https://github.com/sindresorhus/leven#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +leven 3.1.0 - MIT +https://github.com/sindresorhus/leven#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -64208,17 +64208,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -lilconfig 2.1.0 - MIT -https://github.com/antonk52/lilconfig#readme - -Copyright (c) 2022 Anton Kastritskiy - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +lilconfig 2.1.0 - MIT +https://github.com/antonk52/lilconfig#readme + +Copyright (c) 2022 Anton Kastritskiy + MIT License Copyright (c) 2022 Anton Kastritskiy @@ -64240,17 +64240,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -lines-and-columns 1.2.4 - MIT -https://github.com/eventualbuddha/lines-and-columns#readme - -Copyright (c) 2015 Brian Donovan - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +lines-and-columns 1.2.4 - MIT +https://github.com/eventualbuddha/lines-and-columns#readme + +Copyright (c) 2015 Brian Donovan + The MIT License (MIT) Copyright (c) 2015 Brian Donovan @@ -64272,17 +64272,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -loader-runner 4.3.0 - MIT -https://github.com/webpack/loader-runner#readme - -Copyright (c) Tobias Koppers - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +loader-runner 4.3.0 - MIT +https://github.com/webpack/loader-runner#readme + +Copyright (c) Tobias Koppers + The MIT License Copyright (c) Tobias Koppers @sokra @@ -64304,17 +64304,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -loader-utils 2.0.4 - MIT -https://github.com/webpack/loader-utils#readme - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +loader-utils 2.0.4 - MIT +https://github.com/webpack/loader-utils#readme + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -64335,17 +64335,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -loader-utils 3.2.1 - MIT -https://github.com/webpack/loader-utils#readme - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +loader-utils 3.2.1 - MIT +https://github.com/webpack/loader-utils#readme + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -64366,17 +64366,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -locate-path 7.2.0 - MIT -https://github.com/sindresorhus/locate-path#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +locate-path 7.2.0 - MIT +https://github.com/sindresorhus/locate-path#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -64386,19 +64386,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -lodash 4.17.21 - MIT -https://lodash.com/ - -Copyright OpenJS Foundation and other contributors -Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors -copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +lodash 4.17.21 - MIT +https://lodash.com/ + +Copyright OpenJS Foundation and other contributors +Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors +copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + Copyright OpenJS Foundation and other contributors Based on Underscore.js, copyright Jeremy Ashkenas, @@ -64446,19 +64446,19 @@ Files located in the node_modules and vendor directories are externally maintained libraries used by this software which have their own licenses; we recommend you read them, as their terms may differ from the terms above. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -lodash.debounce 4.0.8 - MIT -https://lodash.com/ - -Copyright jQuery Foundation and other contributors -Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors -copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +lodash.debounce 4.0.8 - MIT +https://lodash.com/ + +Copyright jQuery Foundation and other contributors +Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors +copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + Copyright jQuery Foundation and other contributors Based on Underscore.js, copyright Jeremy Ashkenas, @@ -64506,19 +64506,19 @@ Files located in the node_modules and vendor directories are externally maintained libraries used by this software which have their own licenses; we recommend you read them, as their terms may differ from the terms above. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -lodash.memoize 4.1.2 - MIT -https://lodash.com/ - -Copyright jQuery Foundation and other contributors -Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors -copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +lodash.memoize 4.1.2 - MIT +https://lodash.com/ + +Copyright jQuery Foundation and other contributors +Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors +copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + Copyright jQuery Foundation and other contributors Based on Underscore.js, copyright Jeremy Ashkenas, @@ -64566,19 +64566,19 @@ Files located in the node_modules and vendor directories are externally maintained libraries used by this software which have their own licenses; we recommend you read them, as their terms may differ from the terms above. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -lodash.uniq 4.5.0 - MIT -https://lodash.com/ - -Copyright jQuery Foundation and other contributors -Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors -copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +lodash.uniq 4.5.0 - MIT +https://lodash.com/ + +Copyright jQuery Foundation and other contributors +Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors +copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + Copyright jQuery Foundation and other contributors Based on Underscore.js, copyright Jeremy Ashkenas, @@ -64626,18 +64626,18 @@ Files located in the node_modules and vendor directories are externally maintained libraries used by this software which have their own licenses; we recommend you read them, as their terms may differ from the terms above. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -longest-streak 3.1.0 - MIT -https://github.com/wooorm/longest-streak#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +longest-streak 3.1.0 - MIT +https://github.com/wooorm/longest-streak#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + (The MIT License) Copyright (c) 2015 Titus Wormer @@ -64660,17 +64660,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -loose-envify 1.4.0 - MIT -https://github.com/zertosh/loose-envify - -Copyright (c) 2015 Andres Suarez - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +loose-envify 1.4.0 - MIT +https://github.com/zertosh/loose-envify + +Copyright (c) 2015 Andres Suarez + The MIT License (MIT) Copyright (c) 2015 Andres Suarez @@ -64692,17 +64692,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -lower-case 2.0.2 - MIT -https://github.com/blakeembrey/change-case/tree/master/packages/lower-case#readme - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +lower-case 2.0.2 - MIT +https://github.com/blakeembrey/change-case/tree/master/packages/lower-case#readme + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + The MIT License (MIT) Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) @@ -64724,17 +64724,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -lowercase-keys 3.0.0 - MIT -https://github.com/sindresorhus/lowercase-keys#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +lowercase-keys 3.0.0 - MIT +https://github.com/sindresorhus/lowercase-keys#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -64744,17 +64744,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -markdown-extensions 2.0.0 - MIT -https://github.com/sindresorhus/markdown-extensions#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +markdown-extensions 2.0.0 - MIT +https://github.com/sindresorhus/markdown-extensions#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -64764,18 +64764,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -markdown-table 3.0.3 - MIT -https://github.com/wooorm/markdown-table#readme - -(c) Titus Wormer -Copyright (c) 2014 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +markdown-table 3.0.3 - MIT +https://github.com/wooorm/markdown-table#readme + +(c) Titus Wormer +Copyright (c) 2014 Titus Wormer + (The MIT License) Copyright (c) 2014 Titus Wormer @@ -64798,18 +64798,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-directive 3.0.0 - MIT -https://github.com/syntax-tree/mdast-util-directive#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-directive 3.0.0 - MIT +https://github.com/syntax-tree/mdast-util-directive#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -64832,18 +64832,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-find-and-replace 3.0.1 - MIT -https://github.com/syntax-tree/mdast-util-find-and-replace#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-find-and-replace 3.0.1 - MIT +https://github.com/syntax-tree/mdast-util-find-and-replace#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -64866,18 +64866,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-from-markdown 2.0.0 - MIT -https://github.com/syntax-tree/mdast-util-from-markdown#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-from-markdown 2.0.0 - MIT +https://github.com/syntax-tree/mdast-util-from-markdown#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -64900,18 +64900,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-frontmatter 2.0.1 - MIT -https://github.com/syntax-tree/mdast-util-frontmatter#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-frontmatter 2.0.1 - MIT +https://github.com/syntax-tree/mdast-util-frontmatter#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -64934,18 +64934,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-gfm 3.0.0 - MIT -https://github.com/syntax-tree/mdast-util-gfm#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-gfm 3.0.0 - MIT +https://github.com/syntax-tree/mdast-util-gfm#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -64968,18 +64968,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-gfm-autolink-literal 2.0.0 - MIT -https://github.com/syntax-tree/mdast-util-gfm-autolink-literal#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-gfm-autolink-literal 2.0.0 - MIT +https://github.com/syntax-tree/mdast-util-gfm-autolink-literal#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65002,18 +65002,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-gfm-footnote 2.0.0 - MIT -https://github.com/syntax-tree/mdast-util-gfm-footnote#readme - -(c) Titus Wormer -Copyright (c) 2021 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-gfm-footnote 2.0.0 - MIT +https://github.com/syntax-tree/mdast-util-gfm-footnote#readme + +(c) Titus Wormer +Copyright (c) 2021 Titus Wormer + (The MIT License) Copyright (c) 2021 Titus Wormer @@ -65036,16 +65036,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-gfm-strikethrough 2.0.0 - MIT -https://github.com/syntax-tree/mdast-util-gfm-strikethrough#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-gfm-strikethrough 2.0.0 - MIT +https://github.com/syntax-tree/mdast-util-gfm-strikethrough#readme + + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65068,18 +65068,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-gfm-table 2.0.0 - MIT -https://github.com/syntax-tree/mdast-util-gfm-table#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-gfm-table 2.0.0 - MIT +https://github.com/syntax-tree/mdast-util-gfm-table#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65102,18 +65102,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-gfm-task-list-item 2.0.0 - MIT -https://github.com/syntax-tree/mdast-util-gfm-task-list-item#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-gfm-task-list-item 2.0.0 - MIT +https://github.com/syntax-tree/mdast-util-gfm-task-list-item#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65136,18 +65136,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-mdx 3.0.0 - MIT -https://github.com/syntax-tree/mdast-util-mdx#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-mdx 3.0.0 - MIT +https://github.com/syntax-tree/mdast-util-mdx#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65170,18 +65170,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-mdx-expression 2.0.0 - MIT -https://github.com/syntax-tree/mdast-util-mdx-expression#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-mdx-expression 2.0.0 - MIT +https://github.com/syntax-tree/mdast-util-mdx-expression#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65204,18 +65204,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-mdxjs-esm 2.0.1 - MIT -https://github.com/syntax-tree/mdast-util-mdxjs-esm#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-mdxjs-esm 2.0.1 - MIT +https://github.com/syntax-tree/mdast-util-mdxjs-esm#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65238,18 +65238,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-mdx-jsx 3.0.0 - MIT -https://github.com/syntax-tree/mdast-util-mdx-jsx#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-mdx-jsx 3.0.0 - MIT +https://github.com/syntax-tree/mdast-util-mdx-jsx#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65272,19 +65272,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-phrasing 4.0.0 - MIT -https://github.com/syntax-tree/mdast-util-phrasing#readme - -(c) Victor Felder -Copyright (c) 2017 Victor Felder -Copyright (c) 2017 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-phrasing 4.0.0 - MIT +https://github.com/syntax-tree/mdast-util-phrasing#readme + +(c) Victor Felder +Copyright (c) 2017 Victor Felder +Copyright (c) 2017 Titus Wormer + (The MIT License) Copyright (c) 2017 Titus Wormer @@ -65308,18 +65308,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-to-hast 13.0.2 - MIT -https://github.com/syntax-tree/mdast-util-to-hast#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-to-hast 13.0.2 - MIT +https://github.com/syntax-tree/mdast-util-to-hast#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -65342,18 +65342,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-to-markdown 2.1.0 - MIT -https://github.com/syntax-tree/mdast-util-to-markdown#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-to-markdown 2.1.0 - MIT +https://github.com/syntax-tree/mdast-util-to-markdown#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65376,18 +65376,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-to-string 4.0.0 - MIT -https://github.com/syntax-tree/mdast-util-to-string#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-to-string 4.0.0 - MIT +https://github.com/syntax-tree/mdast-util-to-string#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + (The MIT License) Copyright (c) 2015 Titus Wormer @@ -65410,17 +65410,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -media-typer 0.3.0 - MIT -https://github.com/jshttp/media-typer - -Copyright (c) 2014 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +media-typer 0.3.0 - MIT +https://github.com/jshttp/media-typer + +Copyright (c) 2014 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2014 Douglas Christopher Wilson @@ -65443,17 +65443,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -merge2 1.4.1 - MIT -https://github.com/teambition/merge2 - -Copyright (c) 2014-2020 Teambition - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +merge2 1.4.1 - MIT +https://github.com/teambition/merge2 + +Copyright (c) 2014-2020 Teambition + The MIT License (MIT) Copyright (c) 2014-2020 Teambition @@ -65475,20 +65475,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -merge-descriptors 1.0.1 - MIT -https://github.com/component/merge-descriptors - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2015 Douglas Christopher Wilson -Copyright (c) 2013 Jonathan Ong -Copyright (c) 2015 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +merge-descriptors 1.0.1 - MIT +https://github.com/component/merge-descriptors + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson +Copyright (c) 2013 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2013 Jonathan Ong @@ -65512,17 +65512,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -merge-stream 2.0.0 - MIT -https://github.com/grncdr/merge-stream#readme - -Copyright (c) Stephen Sugden (stephensugden.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +merge-stream 2.0.0 - MIT +https://github.com/grncdr/merge-stream#readme + +Copyright (c) Stephen Sugden (stephensugden.com) + The MIT License (MIT) Copyright (c) Stephen Sugden (stephensugden.com) @@ -65544,20 +65544,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -methods 1.1.2 - MIT -https://github.com/jshttp/methods - -Copyright (c) 2013-2014 TJ Holowaychuk -Copyright (c) 2015-2016 Douglas Christopher Wilson -Copyright (c) 2013-2014 TJ Holowaychuk -Copyright (c) 2015-2016 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +methods 1.1.2 - MIT +https://github.com/jshttp/methods + +Copyright (c) 2013-2014 TJ Holowaychuk +Copyright (c) 2015-2016 Douglas Christopher Wilson +Copyright (c) 2013-2014 TJ Holowaychuk +Copyright (c) 2015-2016 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2013-2014 TJ Holowaychuk @@ -65582,17 +65582,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark 4.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark 4.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -65601,16 +65601,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-core-commonmark 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-core-commonmark 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + + MIT License Copyright (c) @@ -65619,16 +65619,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-directive 3.0.0 - MIT -https://github.com/micromark/micromark-extension-directive#readme - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-directive 3.0.0 - MIT +https://github.com/micromark/micromark-extension-directive#readme + + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65651,18 +65651,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-frontmatter 2.0.0 - MIT -https://github.com/micromark/micromark-extension-frontmatter#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-frontmatter 2.0.0 - MIT +https://github.com/micromark/micromark-extension-frontmatter#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65685,16 +65685,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-gfm 3.0.0 - MIT -https://github.com/micromark/micromark-extension-gfm#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-gfm 3.0.0 - MIT +https://github.com/micromark/micromark-extension-gfm#readme + + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65717,18 +65717,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-gfm-autolink-literal 2.0.0 - MIT -https://github.com/micromark/micromark-extension-gfm-autolink-literal#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-gfm-autolink-literal 2.0.0 - MIT +https://github.com/micromark/micromark-extension-gfm-autolink-literal#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65751,18 +65751,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-gfm-footnote 2.0.0 - MIT -https://github.com/micromark/micromark-extension-gfm-footnote#readme - -(c) Titus Wormer -Copyright (c) 2021 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-gfm-footnote 2.0.0 - MIT +https://github.com/micromark/micromark-extension-gfm-footnote#readme + +(c) Titus Wormer +Copyright (c) 2021 Titus Wormer + (The MIT License) Copyright (c) 2021 Titus Wormer @@ -65785,18 +65785,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-gfm-strikethrough 2.0.0 - MIT -https://github.com/micromark/micromark-extension-gfm-strikethrough#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-gfm-strikethrough 2.0.0 - MIT +https://github.com/micromark/micromark-extension-gfm-strikethrough#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65819,18 +65819,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-gfm-table 2.0.0 - MIT -https://github.com/micromark/micromark-extension-gfm-table#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-gfm-table 2.0.0 - MIT +https://github.com/micromark/micromark-extension-gfm-table#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65853,18 +65853,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-gfm-tagfilter 2.0.0 - MIT -https://github.com/micromark/micromark-extension-gfm-tagfilter#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-gfm-tagfilter 2.0.0 - MIT +https://github.com/micromark/micromark-extension-gfm-tagfilter#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65887,18 +65887,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-gfm-task-list-item 2.0.1 - MIT -https://github.com/micromark/micromark-extension-gfm-task-list-item#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-gfm-task-list-item 2.0.1 - MIT +https://github.com/micromark/micromark-extension-gfm-task-list-item#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65921,17 +65921,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-mdx-expression 3.0.0 - MIT -https://github.com/micromark/micromark-extension-mdx-expression/tree/main#readme - -(c) Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-mdx-expression 3.0.0 - MIT +https://github.com/micromark/micromark-extension-mdx-expression/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -65940,18 +65940,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-mdxjs 3.0.0 - MIT -https://github.com/micromark/micromark-extension-mdxjs#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-mdxjs 3.0.0 - MIT +https://github.com/micromark/micromark-extension-mdxjs#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65974,18 +65974,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-mdxjs-esm 3.0.0 - MIT -https://github.com/micromark/micromark-extension-mdxjs-esm#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-mdxjs-esm 3.0.0 - MIT +https://github.com/micromark/micromark-extension-mdxjs-esm#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -66008,18 +66008,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-mdx-jsx 3.0.0 - MIT -https://github.com/micromark/micromark-extension-mdx-jsx#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-mdx-jsx 3.0.0 - MIT +https://github.com/micromark/micromark-extension-mdx-jsx#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -66042,16 +66042,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-mdx-md 2.0.0 - MIT -https://github.com/micromark/micromark-extension-mdx-md#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-mdx-md 2.0.0 - MIT +https://github.com/micromark/micromark-extension-mdx-md#readme + + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -66074,17 +66074,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-factory-destination 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-factory-destination 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66093,17 +66093,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-factory-label 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-factory-label 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66112,17 +66112,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-factory-mdx-expression 2.0.1 - MIT -https://github.com/micromark/micromark-extension-mdx-expression/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-factory-mdx-expression 2.0.1 - MIT +https://github.com/micromark/micromark-extension-mdx-expression/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66131,17 +66131,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-factory-space 1.1.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-factory-space 1.1.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66150,17 +66150,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-factory-space 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-factory-space 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66169,18 +66169,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-factory-title 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer -(c) . param TokenType - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-factory-title 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer +(c) . param TokenType + MIT License Copyright (c) @@ -66189,17 +66189,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-factory-whitespace 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-factory-whitespace 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66208,17 +66208,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-character 1.2.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-character 1.2.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66227,17 +66227,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-character 2.0.1 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-character 2.0.1 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66246,17 +66246,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-chunked 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-chunked 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66265,17 +66265,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-classify-character 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-classify-character 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66284,17 +66284,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-combine-extensions 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-combine-extensions 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66303,17 +66303,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-decode-numeric-character-reference 2.0.1 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-decode-numeric-character-reference 2.0.1 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66322,17 +66322,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-decode-string 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-decode-string 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66341,17 +66341,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-encode 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-encode 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66360,17 +66360,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-events-to-acorn 2.0.2 - MIT -https://github.com/micromark/micromark-extension-mdx-expression/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-events-to-acorn 2.0.2 - MIT +https://github.com/micromark/micromark-extension-mdx-expression/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66379,17 +66379,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-html-tag-name 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-html-tag-name 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66398,17 +66398,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-normalize-identifier 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-normalize-identifier 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66417,17 +66417,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-resolve-all 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-resolve-all 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66436,17 +66436,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-sanitize-uri 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-sanitize-uri 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66455,17 +66455,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-subtokenize 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-subtokenize 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66474,17 +66474,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-symbol 1.1.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-symbol 1.1.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66493,17 +66493,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-symbol 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-symbol 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66512,17 +66512,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-types 1.1.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-types 1.1.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66531,17 +66531,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-types 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-types 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66550,18 +66550,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromatch 4.0.5 - MIT -https://github.com/micromatch/micromatch - -Copyright (c) 2014-present, Jon Schlinkert -Copyright (c) 2022, Jon Schlinkert (https://github.com/jonschlinkert) - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromatch 4.0.5 - MIT +https://github.com/micromatch/micromatch + +Copyright (c) 2014-present, Jon Schlinkert +Copyright (c) 2022, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2014-present, Jon Schlinkert. @@ -66583,17 +66583,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mime 1.6.0 - MIT -https://github.com/broofa/node-mime#readme - -Copyright (c) 2010 Benjamin Thomas, Robert Kieffer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mime 1.6.0 - MIT +https://github.com/broofa/node-mime#readme + +Copyright (c) 2010 Benjamin Thomas, Robert Kieffer + The MIT License (MIT) Copyright (c) 2010 Benjamin Thomas, Robert Kieffer @@ -66615,18 +66615,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mime-db 1.33.0 - MIT -https://github.com/jshttp/mime-db#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014 Jonathan Ong me@jongleberry.com - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mime-db 1.33.0 - MIT +https://github.com/jshttp/mime-db#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014 Jonathan Ong me@jongleberry.com + The MIT License (MIT) @@ -66649,20 +66649,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mime-db 1.52.0 - MIT -https://github.com/jshttp/mime-db#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2015-2022 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2015-2022 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mime-db 1.52.0 - MIT +https://github.com/jshttp/mime-db#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015-2022 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015-2022 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2014 Jonathan Ong @@ -66686,20 +66686,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mime-types 2.1.18 - MIT -https://github.com/jshttp/mime-types#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2015 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2015 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mime-types 2.1.18 - MIT +https://github.com/jshttp/mime-types#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2014 Jonathan Ong @@ -66723,20 +66723,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mime-types 2.1.35 - MIT -https://github.com/jshttp/mime-types#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2015 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2015 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mime-types 2.1.35 - MIT +https://github.com/jshttp/mime-types#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2014 Jonathan Ong @@ -66760,18 +66760,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mimic-fn 2.1.0 - MIT -https://github.com/sindresorhus/mimic-fn#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mimic-fn 2.1.0 - MIT +https://github.com/sindresorhus/mimic-fn#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -66781,17 +66781,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mimic-response 3.1.0 - MIT -https://github.com/sindresorhus/mimic-response#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mimic-response 3.1.0 - MIT +https://github.com/sindresorhus/mimic-response#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -66801,17 +66801,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mimic-response 4.0.0 - MIT -https://github.com/sindresorhus/mimic-response#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mimic-response 4.0.0 - MIT +https://github.com/sindresorhus/mimic-response#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -66821,17 +66821,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mini-css-extract-plugin 2.7.6 - MIT -https://github.com/webpack-contrib/mini-css-extract-plugin - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mini-css-extract-plugin 2.7.6 - MIT +https://github.com/webpack-contrib/mini-css-extract-plugin + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -66852,16 +66852,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -minimist 1.2.8 - MIT -https://github.com/minimistjs/minimist - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +minimist 1.2.8 - MIT +https://github.com/minimistjs/minimist + + This software is released under the MIT license: Permission is hereby granted, free of charge, to any person obtaining a copy of @@ -66880,18 +66880,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mrmime 2.0.0 - MIT -https://github.com/lukeed/mrmime#readme - -(c) Luke Edwards (https://lukeed.com) -Copyright (c) Luke Edwards (https://lukeed.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mrmime 2.0.0 - MIT +https://github.com/lukeed/mrmime#readme + +(c) Luke Edwards (https://lukeed.com) +Copyright (c) Luke Edwards (https://lukeed.com) + The MIT License (MIT) Copyright (c) Luke Edwards (https://lukeed.com) @@ -66913,17 +66913,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ms 2.1.2 - MIT -https://github.com/zeit/ms#readme - -Copyright (c) 2016 Zeit, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ms 2.1.2 - MIT +https://github.com/zeit/ms#readme + +Copyright (c) 2016 Zeit, Inc. + The MIT License (MIT) Copyright (c) 2016 Zeit, Inc. @@ -66945,17 +66945,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ms 2.1.3 - MIT -https://github.com/vercel/ms#readme - -Copyright (c) 2020 Vercel, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ms 2.1.3 - MIT +https://github.com/vercel/ms#readme + +Copyright (c) 2020 Vercel, Inc. + The MIT License (MIT) Copyright (c) 2020 Vercel, Inc. @@ -66977,17 +66977,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -multicast-dns 7.2.5 - MIT -https://github.com/mafintosh/multicast-dns - -Copyright (c) 2015 Mathias Buus - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +multicast-dns 7.2.5 - MIT +https://github.com/mafintosh/multicast-dns + +Copyright (c) 2015 Mathias Buus + The MIT License (MIT) Copyright (c) 2015 Mathias Buus @@ -67009,17 +67009,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -nanoid 3.3.7 - MIT -https://github.com/ai/nanoid#readme - -Copyright 2017 Andrey Sitnik - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +nanoid 3.3.7 - MIT +https://github.com/ai/nanoid#readme + +Copyright 2017 Andrey Sitnik + The MIT License (MIT) Copyright 2017 Andrey Sitnik @@ -67040,23 +67040,23 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -negotiator 0.6.3 - MIT -https://github.com/jshttp/negotiator#readme - -Copyright (c) 2012 Federico Romero -Copyright (c) 2014 Federico Romero -Copyright (c) 2012 Isaac Z. Schlueter -Copyright (c) 2012-2014 Federico Romero -Copyright (c) 2012-2014 Isaac Z. Schlueter -Copyright (c) 2015 Douglas Christopher Wilson -Copyright (c) 2014-2015 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +negotiator 0.6.3 - MIT +https://github.com/jshttp/negotiator#readme + +Copyright (c) 2012 Federico Romero +Copyright (c) 2014 Federico Romero +Copyright (c) 2012 Isaac Z. Schlueter +Copyright (c) 2012-2014 Federico Romero +Copyright (c) 2012-2014 Isaac Z. Schlueter +Copyright (c) 2015 Douglas Christopher Wilson +Copyright (c) 2014-2015 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2012-2014 Federico Romero @@ -67081,18 +67081,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -neo-async 2.6.2 - MIT -https://github.com/suguru03/neo-async - -Copyright Caolan McMahon -Copyright (c) 2014-2018 Suguru Motegi - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +neo-async 2.6.2 - MIT +https://github.com/suguru03/neo-async + +Copyright Caolan McMahon +Copyright (c) 2014-2018 Suguru Motegi + MIT License Copyright (c) 2014-2018 Suguru Motegi @@ -67115,17 +67115,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -no-case 3.0.4 - MIT -https://github.com/blakeembrey/change-case/tree/master/packages/no-case#readme - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +no-case 3.0.4 - MIT +https://github.com/blakeembrey/change-case/tree/master/packages/no-case#readme + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + The MIT License (MIT) Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) @@ -67147,17 +67147,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -node-emoji 2.1.3 - MIT -https://github.com/omnidan/node-emoji#readme - -Copyright (c) 2014-2023 Daniel Bugl - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +node-emoji 2.1.3 - MIT +https://github.com/omnidan/node-emoji#readme + +Copyright (c) 2014-2023 Daniel Bugl + # MIT License Copyright (c) 2014-2023 Daniel Bugl @@ -67180,17 +67180,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -node-releases 2.0.14 - MIT -https://github.com/chicoxyzzy/node-releases#readme - -Copyright (c) 2017 Sergey Rubanov (https://github.com/chicoxyzzy) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +node-releases 2.0.14 - MIT +https://github.com/chicoxyzzy/node-releases#readme + +Copyright (c) 2017 Sergey Rubanov (https://github.com/chicoxyzzy) + The MIT License Copyright (c) 2017 Sergey Rubanov (https://github.com/chicoxyzzy) @@ -67212,18 +67212,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -normalize-path 3.0.0 - MIT -https://github.com/jonschlinkert/normalize-path - -Copyright (c) 2014-2018, Jon Schlinkert -Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +normalize-path 3.0.0 - MIT +https://github.com/jonschlinkert/normalize-path + +Copyright (c) 2014-2018, Jon Schlinkert +Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2014-2018, Jon Schlinkert. @@ -67245,18 +67245,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -normalize-range 0.1.2 - MIT -https://github.com/jamestalmage/normalize-range#readme - -Copyright (c) James Talmage -(c) James Talmage (http://github.com/jamestalmage) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +normalize-range 0.1.2 - MIT +https://github.com/jamestalmage/normalize-range#readme + +Copyright (c) James Talmage +(c) James Talmage (http://github.com/jamestalmage) + The MIT License (MIT) Copyright (c) James Talmage (github.com/jamestalmage) @@ -67278,17 +67278,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -normalize-url 6.1.0 - MIT -https://github.com/sindresorhus/normalize-url#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +normalize-url 6.1.0 - MIT +https://github.com/sindresorhus/normalize-url#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -67298,17 +67298,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -normalize-url 8.0.0 - MIT -https://github.com/sindresorhus/normalize-url#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +normalize-url 8.0.0 - MIT +https://github.com/sindresorhus/normalize-url#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -67318,17 +67318,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -npm-run-path 4.0.1 - MIT -https://github.com/sindresorhus/npm-run-path#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +npm-run-path 4.0.1 - MIT +https://github.com/sindresorhus/npm-run-path#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -67338,19 +67338,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -nprogress 0.2.0 - MIT -https://github.com/rstacruz/nprogress - -(c) 2013-2014, Rico Sta. Cruz -Copyright (c) 2013-2014 Rico Sta. Cruz -(c) 2013, 2014 Rico Sta. Cruz - http://ricostacruz.com/nprogress - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +nprogress 0.2.0 - MIT +https://github.com/rstacruz/nprogress + +(c) 2013-2014, Rico Sta. Cruz +Copyright (c) 2013-2014 Rico Sta. Cruz +(c) 2013, 2014 Rico Sta. Cruz - http://ricostacruz.com/nprogress + Copyright (c) 2013-2014 Rico Sta. Cruz Permission is hereby granted, free of charge, to any person obtaining a copy @@ -67370,17 +67370,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -object.assign 4.1.5 - MIT -https://github.com/ljharb/object.assign#readme - -Copyright (c) 2014 Jordan Harband - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +object.assign 4.1.5 - MIT +https://github.com/ljharb/object.assign#readme + +Copyright (c) 2014 Jordan Harband + The MIT License (MIT) Copyright (c) 2014 Jordan Harband @@ -67401,19 +67401,19 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -object-assign 4.1.1 - MIT -https://github.com/sindresorhus/object-assign#readme - -(c) Sindre Sorhus -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - +SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +object-assign 4.1.1 - MIT +https://github.com/sindresorhus/object-assign#readme + +(c) Sindre Sorhus +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + The MIT License (MIT) Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -67435,17 +67435,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -object-inspect 1.13.1 - MIT -https://github.com/inspect-js/object-inspect - -Copyright (c) 2013 James Halliday - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +object-inspect 1.13.1 - MIT +https://github.com/inspect-js/object-inspect + +Copyright (c) 2013 James Halliday + MIT License Copyright (c) 2013 James Halliday @@ -67467,17 +67467,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -object-keys 1.1.1 - MIT -https://github.com/ljharb/object-keys#readme - -Copyright (c) 2013 Jordan Harband - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +object-keys 1.1.1 - MIT +https://github.com/ljharb/object-keys#readme + +Copyright (c) 2013 Jordan Harband + The MIT License (MIT) Copyright (C) 2013 Jordan Harband @@ -67498,17 +67498,17 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -obuf 1.1.2 - MIT -https://github.com/indutny/offset-buffer - -Copyright Fedor Indutny, 2015 - +THE SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +obuf 1.1.2 - MIT +https://github.com/indutny/offset-buffer + +Copyright Fedor Indutny, 2015 + Copyright Fedor Indutny, 2015. Permission is hereby granted, free of charge, to any person obtaining a @@ -67528,17 +67528,17 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -onetime 5.1.2 - MIT -https://github.com/sindresorhus/onetime#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - +USE OR OTHER DEALINGS IN THE SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +onetime 5.1.2 - MIT +https://github.com/sindresorhus/onetime#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -67548,20 +67548,20 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -on-finished 2.4.1 - MIT -https://github.com/jshttp/on-finished#readme - -Copyright (c) 2013 Jonathan Ong -Copyright (c) 2014 Douglas Christopher Wilson -Copyright (c) 2013 Jonathan Ong -Copyright (c) 2014 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +on-finished 2.4.1 - MIT +https://github.com/jshttp/on-finished#readme + +Copyright (c) 2013 Jonathan Ong +Copyright (c) 2014 Douglas Christopher Wilson +Copyright (c) 2013 Jonathan Ong +Copyright (c) 2014 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2013 Jonathan Ong @@ -67585,17 +67585,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -on-headers 1.0.2 - MIT -https://github.com/jshttp/on-headers#readme - -Copyright (c) 2014 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +on-headers 1.0.2 - MIT +https://github.com/jshttp/on-headers#readme + +Copyright (c) 2014 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2014 Douglas Christopher Wilson @@ -67618,21 +67618,21 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -open 8.4.2 - MIT -https://github.com/sindresorhus/open#readme - -Copyright 2006, Kevin Krammer -Copyright 2006, Jeremy White -Copyright 2009-2010, Fathi Boudra -Copyright 2009-2010, Rex Dieter -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +open 8.4.2 - MIT +https://github.com/sindresorhus/open#readme + +Copyright 2006, Kevin Krammer +Copyright 2006, Jeremy White +Copyright 2009-2010, Fathi Boudra +Copyright 2009-2010, Rex Dieter +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -67642,17 +67642,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -package-json 8.1.1 - MIT -https://github.com/sindresorhus/package-json#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +package-json 8.1.1 - MIT +https://github.com/sindresorhus/package-json#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -67662,17 +67662,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -param-case 3.0.4 - MIT -https://github.com/blakeembrey/change-case/tree/master/packages/param-case#readme - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +param-case 3.0.4 - MIT +https://github.com/blakeembrey/change-case/tree/master/packages/param-case#readme + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + The MIT License (MIT) Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) @@ -67694,18 +67694,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -parent-module 1.0.1 - MIT -https://github.com/sindresorhus/parent-module#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +parent-module 1.0.1 - MIT +https://github.com/sindresorhus/parent-module#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -67715,17 +67715,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -parse5 7.1.2 - MIT -https://github.com/inikulin/parse5 - -Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +parse5 7.1.2 - MIT +https://github.com/inikulin/parse5 + +Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin) + Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin) Permission is hereby granted, free of charge, to any person obtaining a copy @@ -67745,17 +67745,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -parse5-htmlparser2-tree-adapter 7.0.0 - MIT -https://github.com/inikulin/parse5 - -Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +parse5-htmlparser2-tree-adapter 7.0.0 - MIT +https://github.com/inikulin/parse5 + +Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin) + Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin) Permission is hereby granted, free of charge, to any person obtaining a copy @@ -67775,18 +67775,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -parse-entities 4.0.1 - MIT -https://github.com/wooorm/parse-entities#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +parse-entities 4.0.1 - MIT +https://github.com/wooorm/parse-entities#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + (The MIT License) Copyright (c) 2015 Titus Wormer @@ -67809,17 +67809,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -parse-json 5.2.0 - MIT -https://github.com/sindresorhus/parse-json#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +parse-json 5.2.0 - MIT +https://github.com/sindresorhus/parse-json#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -67829,20 +67829,20 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -parseurl 1.3.3 - MIT -https://github.com/pillarjs/parseurl#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014-2017 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014-2017 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +parseurl 1.3.3 - MIT +https://github.com/pillarjs/parseurl#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2017 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2017 Douglas Christopher Wilson + (The MIT License) @@ -67867,17 +67867,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -pascal-case 3.1.2 - MIT -https://github.com/blakeembrey/change-case/tree/master/packages/pascal-case#readme - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +pascal-case 3.1.2 - MIT +https://github.com/blakeembrey/change-case/tree/master/packages/pascal-case#readme + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + The MIT License (MIT) Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) @@ -67899,17 +67899,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -path-exists 5.0.0 - MIT -https://github.com/sindresorhus/path-exists#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +path-exists 5.0.0 - MIT +https://github.com/sindresorhus/path-exists#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -67919,18 +67919,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -path-is-absolute 1.0.1 - MIT -https://github.com/sindresorhus/path-is-absolute#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +path-is-absolute 1.0.1 - MIT +https://github.com/sindresorhus/path-is-absolute#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + The MIT License (MIT) Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -67952,17 +67952,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -path-key 3.1.1 - MIT -https://github.com/sindresorhus/path-key#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +path-key 3.1.1 - MIT +https://github.com/sindresorhus/path-key#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -67972,18 +67972,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -path-parse 1.0.7 - MIT -https://github.com/jbgutierrez/path-parse#readme - -Copyright (c) 2015 Javier Blanco -(c) Javier Blanco (http://jbgutierrez.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +path-parse 1.0.7 - MIT +https://github.com/jbgutierrez/path-parse#readme + +Copyright (c) 2015 Javier Blanco +(c) Javier Blanco (http://jbgutierrez.info) + The MIT License (MIT) Copyright (c) 2015 Javier Blanco @@ -68005,17 +68005,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -path-to-regexp 0.1.7 - MIT -https://github.com/component/path-to-regexp#readme - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +path-to-regexp 0.1.7 - MIT +https://github.com/component/path-to-regexp#readme + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + The MIT License (MIT) Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) @@ -68037,17 +68037,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -path-to-regexp 1.8.0 - MIT -https://github.com/pillarjs/path-to-regexp#readme - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +path-to-regexp 1.8.0 - MIT +https://github.com/pillarjs/path-to-regexp#readme + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + The MIT License (MIT) Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) @@ -68069,17 +68069,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -path-to-regexp 2.2.1 - MIT -https://github.com/pillarjs/path-to-regexp#readme - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +path-to-regexp 2.2.1 - MIT +https://github.com/pillarjs/path-to-regexp#readme + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + The MIT License (MIT) Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) @@ -68101,18 +68101,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -path-type 4.0.0 - MIT -https://github.com/sindresorhus/path-type#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +path-type 4.0.0 - MIT +https://github.com/sindresorhus/path-type#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -68122,17 +68122,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -p-cancelable 4.0.1 - MIT -https://github.com/sindresorhus/p-cancelable#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +p-cancelable 4.0.1 - MIT +https://github.com/sindresorhus/p-cancelable#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -68142,17 +68142,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -periscopic 3.1.0 - MIT -https://github.com/Rich-Harris/periscopic#readme - -Copyright (c) 2019 Rich Harris - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +periscopic 3.1.0 - MIT +https://github.com/Rich-Harris/periscopic#readme + +Copyright (c) 2019 Rich Harris + Copyright (c) 2019 Rich Harris 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: @@ -68160,18 +68160,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -picomatch 2.3.1 - MIT -https://github.com/micromatch/picomatch - -Copyright (c) 2017-present, Jon Schlinkert -Copyright (c) 2017-present, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +picomatch 2.3.1 - MIT +https://github.com/micromatch/picomatch + +Copyright (c) 2017-present, Jon Schlinkert +Copyright (c) 2017-present, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2017-present, Jon Schlinkert. @@ -68193,17 +68193,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -pkg-dir 7.0.0 - MIT -https://github.com/sindresorhus/pkg-dir#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +pkg-dir 7.0.0 - MIT +https://github.com/sindresorhus/pkg-dir#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -68213,18 +68213,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -pkg-up 3.1.0 - MIT -https://github.com/sindresorhus/pkg-up#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +pkg-up 3.1.0 - MIT +https://github.com/sindresorhus/pkg-up#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -68234,17 +68234,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -p-limit 4.0.0 - MIT -https://github.com/sindresorhus/p-limit#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +p-limit 4.0.0 - MIT +https://github.com/sindresorhus/p-limit#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -68254,17 +68254,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -p-locate 6.0.0 - MIT -https://github.com/sindresorhus/p-locate#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +p-locate 6.0.0 - MIT +https://github.com/sindresorhus/p-locate#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -68274,17 +68274,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -p-map 4.0.0 - MIT -https://github.com/sindresorhus/p-map#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +p-map 4.0.0 - MIT +https://github.com/sindresorhus/p-map#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -68294,17 +68294,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss 8.4.32 - MIT -https://postcss.org/ - -Copyright 2013 Andrey Sitnik - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss 8.4.32 - MIT +https://postcss.org/ + +Copyright 2013 Andrey Sitnik + The MIT License (MIT) Copyright 2013 Andrey Sitnik @@ -68325,17 +68325,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-calc 8.2.4 - MIT - - -Copyright (c) 2014 Maxime Thirouin - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-calc 8.2.4 - MIT + + +Copyright (c) 2014 Maxime Thirouin + The MIT License (MIT) Copyright (c) 2014 Maxime Thirouin @@ -68356,18 +68356,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-colormin 5.3.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-colormin 5.3.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68390,18 +68390,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-convert-values 5.1.3 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-convert-values 5.1.3 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68424,18 +68424,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-discard-comments 5.1.2 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-discard-comments 5.1.2 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68458,19 +68458,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-discard-duplicates 5.1.0 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-discard-duplicates 5.1.0 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68493,19 +68493,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-discard-empty 5.1.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-discard-empty 5.1.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68528,17 +68528,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-discard-overridden 5.1.0 - MIT -https://github.com/cssnano/cssnano - -Copyright 2016 Justineo - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-discard-overridden 5.1.0 - MIT +https://github.com/cssnano/cssnano + +Copyright 2016 Justineo + The MIT License (MIT) Copyright 2016 Justineo @@ -68559,19 +68559,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-discard-unused 5.1.0 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-discard-unused 5.1.0 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68594,17 +68594,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-loader 7.3.3 - MIT -https://github.com/webpack-contrib/postcss-loader - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-loader 7.3.3 - MIT +https://github.com/webpack-contrib/postcss-loader + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -68624,19 +68624,19 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-merge-idents 5.1.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-merge-idents 5.1.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68659,18 +68659,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-merge-longhand 5.1.7 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-merge-longhand 5.1.7 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68693,18 +68693,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-merge-rules 5.1.4 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-merge-rules 5.1.4 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68727,19 +68727,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-minify-font-values 5.1.0 - MIT -https://github.com/cssnano/cssnano - -(c) Bogdan Chadkin -Copyright (c) Bogdan Chadkin -(c) Bogdan Chadkin (mailto:trysound@yandex.ru) mathias https://mathiasbynens.be/notes/unquoted-font-family PostCSS https://github.com/postcss/postcss ci-img https://travis-ci.org/cssnano/postcss-minify-font-values.svg - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-minify-font-values 5.1.0 - MIT +https://github.com/cssnano/cssnano + +(c) Bogdan Chadkin +Copyright (c) Bogdan Chadkin +(c) Bogdan Chadkin (mailto:trysound@yandex.ru) mathias https://mathiasbynens.be/notes/unquoted-font-family PostCSS https://github.com/postcss/postcss ci-img https://travis-ci.org/cssnano/postcss-minify-font-values.svg + Copyright (c) Bogdan Chadkin Permission is hereby granted, free of charge, to any person @@ -68762,19 +68762,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-minify-gradients 5.1.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-minify-gradients 5.1.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68797,18 +68797,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-minify-params 5.1.4 - MIT -https://github.com/cssnano/cssnano - -(c) Bogdan Chadkin -Copyright 2015 Bogdan Chadkin - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-minify-params 5.1.4 - MIT +https://github.com/cssnano/cssnano + +(c) Bogdan Chadkin +Copyright 2015 Bogdan Chadkin + The MIT License (MIT) Copyright 2015 Bogdan Chadkin @@ -68829,19 +68829,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-minify-selectors 5.2.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -Copyright Mathias Bynens https://github.com/mathiasbynens/mothereff.in - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-minify-selectors 5.2.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +Copyright Mathias Bynens https://github.com/mathiasbynens/mothereff.in + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68864,17 +68864,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-modules-local-by-default 4.0.3 - MIT -https://github.com/css-modules/postcss-modules-local-by-default#readme - -Copyright 2015 Mark Dalgleish - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-modules-local-by-default 4.0.3 - MIT +https://github.com/css-modules/postcss-modules-local-by-default#readme + +Copyright 2015 Mark Dalgleish + The MIT License (MIT) Copyright 2015 Mark Dalgleish @@ -68895,18 +68895,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-normalize-charset 5.1.0 - MIT -https://github.com/cssnano/cssnano - -(c) Bogdan Chadkin -Copyright 2015 Bogdan Chadkin - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-normalize-charset 5.1.0 - MIT +https://github.com/cssnano/cssnano + +(c) Bogdan Chadkin +Copyright 2015 Bogdan Chadkin + The MIT License (MIT) Copyright 2015 Bogdan Chadkin @@ -68927,19 +68927,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-normalize-display-values 5.1.0 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-normalize-display-values 5.1.0 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68962,18 +68962,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-normalize-positions 5.1.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-normalize-positions 5.1.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68996,18 +68996,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-normalize-repeat-style 5.1.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-normalize-repeat-style 5.1.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69030,19 +69030,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-normalize-string 5.1.0 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-normalize-string 5.1.0 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69065,19 +69065,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-normalize-timing-functions 5.1.0 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-normalize-timing-functions 5.1.0 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69100,18 +69100,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-normalize-unicode 5.1.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-normalize-unicode 5.1.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69134,19 +69134,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-normalize-url 5.1.0 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) docs https://github.com/sindresorhus/normalize-url options postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-normalize-url 5.1.0 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) docs https://github.com/sindresorhus/normalize-url options postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69169,19 +69169,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-normalize-whitespace 5.1.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-normalize-whitespace 5.1.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69204,18 +69204,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-ordered-values 5.1.3 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-ordered-values 5.1.3 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69238,19 +69238,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-reduce-idents 5.2.0 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) idents https://developer.mozilla.org/en-US/docs/Web/CSS/custom-ident - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-reduce-idents 5.2.0 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) idents https://developer.mozilla.org/en-US/docs/Web/CSS/custom-ident + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69273,18 +69273,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-reduce-initial 5.1.2 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-reduce-initial 5.1.2 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69307,19 +69307,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-reduce-transforms 5.1.0 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-reduce-transforms 5.1.0 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69342,17 +69342,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-selector-parser 6.0.13 - MIT -https://github.com/postcss/postcss-selector-parser - -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-selector-parser 6.0.13 - MIT +https://github.com/postcss/postcss-selector-parser + +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69375,49 +69375,49 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-sort-media-queries 4.4.1 - MIT -https://github.com/solversgroup/postcss-sort-media-queries - -Copyright 2019 Yunus Gaziev - -The MIT License (MIT) - -Copyright 2019 Yunus Gaziev - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-svgo 5.1.0 - MIT -https://github.com/cssnano/cssnano - -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-sort-media-queries 4.4.1 - MIT +https://github.com/solversgroup/postcss-sort-media-queries + +Copyright 2019 Yunus Gaziev + +The MIT License (MIT) + +Copyright 2019 Yunus Gaziev + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-svgo 5.1.0 - MIT +https://github.com/cssnano/cssnano + +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69440,19 +69440,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-unique-selectors 5.1.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-unique-selectors 5.1.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69475,18 +69475,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-value-parser 4.2.0 - MIT -https://github.com/TrySound/postcss-value-parser - -(c) Bogdan Chadkin -Copyright (c) Bogdan Chadkin - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-value-parser 4.2.0 - MIT +https://github.com/TrySound/postcss-value-parser + +(c) Bogdan Chadkin +Copyright (c) Bogdan Chadkin + Copyright (c) Bogdan Chadkin Permission is hereby granted, free of charge, to any person @@ -69509,19 +69509,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-zindex 5.1.0 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-zindex 5.1.0 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69544,17 +69544,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -p-retry 4.6.2 - MIT -https://github.com/sindresorhus/p-retry#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +p-retry 4.6.2 - MIT +https://github.com/sindresorhus/p-retry#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -69564,17 +69564,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -pretty-error 4.0.0 - MIT -https://github.com/AriaMinaei/pretty-error#readme - -Copyright (c) 2013 Aria Minaei - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +pretty-error 4.0.0 - MIT +https://github.com/AriaMinaei/pretty-error#readme + +Copyright (c) 2013 Aria Minaei + The MIT License (MIT) Copyright (c) 2013 Aria Minaei @@ -69595,19 +69595,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -pretty-time 1.1.0 - MIT -https://github.com/jonschlinkert/pretty-time - -Copyright (c) 2015-present, Jon Schlinkert -Copyright (c) 2015-2018, present, Jon Schlinkert -Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +pretty-time 1.1.0 - MIT +https://github.com/jonschlinkert/pretty-time + +Copyright (c) 2015-present, Jon Schlinkert +Copyright (c) 2015-2018, present, Jon Schlinkert +Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2015-present, Jon Schlinkert. @@ -69629,18 +69629,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -prismjs 1.29.0 - MIT -https://github.com/PrismJS/prism#readme - -Copyright (c) 2012 Lea Verou -copyright year 69cbf7a (https://github.com/PrismJS/prism/commit/69cbf7a) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +prismjs 1.29.0 - MIT +https://github.com/PrismJS/prism#readme + +Copyright (c) 2012 Lea Verou +copyright year 69cbf7a (https://github.com/PrismJS/prism/commit/69cbf7a) + MIT LICENSE Copyright (c) 2012 Lea Verou @@ -69662,49 +69662,49 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -prism-react-renderer 2.3.1 - MIT -https://github.com/FormidableLabs/prism-react-renderer#readme - -Copyright (c) 2018 Formidable - -MIT License - -Copyright (c) 2018 Formidable - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -process-nextick-args 2.0.1 - MIT -https://github.com/calvinmetcalf/process-nextick-args - -Copyright (c) 2015 Calvin Metcalf - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +prism-react-renderer 2.3.1 - MIT +https://github.com/FormidableLabs/prism-react-renderer#readme + +Copyright (c) 2018 Formidable + +MIT License + +Copyright (c) 2018 Formidable + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +process-nextick-args 2.0.1 - MIT +https://github.com/calvinmetcalf/process-nextick-args + +Copyright (c) 2015 Calvin Metcalf + # Copyright (c) 2015 Calvin Metcalf Permission is hereby granted, free of charge, to any person obtaining a copy @@ -69724,18 +69724,18 @@ 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.** - - ---------------------------------------------------------- - ---------------------------------------------------------- - -prompts 2.4.2 - MIT -https://github.com/terkelg/prompts#readme - -(c) Terkel Gjervig (https://terkel.com) -Copyright (c) 2018 Terkel Gjervig Nielsen - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +prompts 2.4.2 - MIT +https://github.com/terkelg/prompts#readme + +(c) Terkel Gjervig (https://terkel.com) +Copyright (c) 2018 Terkel Gjervig Nielsen + MIT License Copyright (c) 2018 Terkel Gjervig Nielsen @@ -69757,19 +69757,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -property-information 6.4.0 - MIT -https://github.com/wooorm/property-information#readme - -(c) Titus Wormer -(c) Facebook, Inc. -Copyright (c) 2015 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +property-information 6.4.0 - MIT +https://github.com/wooorm/property-information#readme + +(c) Titus Wormer +(c) Facebook, Inc. +Copyright (c) 2015 Titus Wormer + (The MIT License) Copyright (c) 2015 Titus Wormer @@ -69792,19 +69792,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -prop-types 15.8.1 - MIT -https://facebook.github.io/react/ - -(c) Sindre Sorhus -Copyright (c) 2013-present, Facebook, Inc. -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +prop-types 15.8.1 - MIT +https://facebook.github.io/react/ + +(c) Sindre Sorhus +Copyright (c) 2013-present, Facebook, Inc. +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) 2013-present, Facebook, Inc. @@ -69826,17 +69826,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -proxy-addr 2.0.7 - MIT -https://github.com/jshttp/proxy-addr#readme - -Copyright (c) 2014-2016 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +proxy-addr 2.0.7 - MIT +https://github.com/jshttp/proxy-addr#readme + +Copyright (c) 2014-2016 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2014-2016 Douglas Christopher Wilson @@ -69859,17 +69859,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -punycode 1.4.1 - MIT -https://mths.be/punycode - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +punycode 1.4.1 - MIT +https://mths.be/punycode + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -69890,17 +69890,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -punycode 2.3.1 - MIT -https://mths.be/punycode - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +punycode 2.3.1 - MIT +https://mths.be/punycode + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -69921,17 +69921,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -pupa 3.1.0 - MIT -https://github.com/sindresorhus/pupa#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +pupa 3.1.0 - MIT +https://github.com/sindresorhus/pupa#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -69941,17 +69941,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -queue 6.0.2 - MIT -https://github.com/jessetane/queue#readme - -Copyright (c) 2014 Jesse Tane - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +queue 6.0.2 - MIT +https://github.com/jessetane/queue#readme + +Copyright (c) 2014 Jesse Tane + The MIT License (MIT) Copyright (c) 2014 Jesse Tane @@ -69960,18 +69960,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -queue-microtask 1.2.3 - MIT -https://github.com/feross/queue-microtask - -Copyright (c) Feross Aboukhadijeh -Copyright (c) Feross Aboukhadijeh (https://feross.org) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +queue-microtask 1.2.3 - MIT +https://github.com/feross/queue-microtask + +Copyright (c) Feross Aboukhadijeh +Copyright (c) Feross Aboukhadijeh (https://feross.org) + The MIT License (MIT) Copyright (c) Feross Aboukhadijeh @@ -69992,17 +69992,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -quick-lru 5.1.1 - MIT -https://github.com/sindresorhus/quick-lru#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +quick-lru 5.1.1 - MIT +https://github.com/sindresorhus/quick-lru#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -70012,17 +70012,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -randombytes 2.1.0 - MIT -https://github.com/crypto-browserify/randombytes - -Copyright (c) 2017 crypto-browserify - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +randombytes 2.1.0 - MIT +https://github.com/crypto-browserify/randombytes + +Copyright (c) 2017 crypto-browserify + MIT License Copyright (c) 2017 crypto-browserify @@ -70044,20 +70044,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -range-parser 1.2.0 - MIT -https://github.com/jshttp/range-parser - -Copyright (c) 2012-2014 TJ Holowaychuk -Copyright (c) 2015-2016 Douglas Christopher Wilson -Copyright (c) 2012-2014 TJ Holowaychuk -Copyright (c) 2015-2016 Douglas Christopher Wilson doug@somethingdoug.com - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +range-parser 1.2.0 - MIT +https://github.com/jshttp/range-parser + +Copyright (c) 2012-2014 TJ Holowaychuk +Copyright (c) 2015-2016 Douglas Christopher Wilson +Copyright (c) 2012-2014 TJ Holowaychuk +Copyright (c) 2015-2016 Douglas Christopher Wilson doug@somethingdoug.com + (The MIT License) Copyright (c) 2012-2014 TJ Holowaychuk @@ -70081,20 +70081,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -range-parser 1.2.1 - MIT -https://github.com/jshttp/range-parser#readme - -Copyright (c) 2012-2014 TJ Holowaychuk -Copyright (c) 2015-2016 Douglas Christopher Wilson -Copyright (c) 2012-2014 TJ Holowaychuk -Copyright (c) 2015-2016 Douglas Christopher Wilson doug@somethingdoug.com - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +range-parser 1.2.1 - MIT +https://github.com/jshttp/range-parser#readme + +Copyright (c) 2012-2014 TJ Holowaychuk +Copyright (c) 2015-2016 Douglas Christopher Wilson +Copyright (c) 2012-2014 TJ Holowaychuk +Copyright (c) 2015-2016 Douglas Christopher Wilson doug@somethingdoug.com + (The MIT License) Copyright (c) 2012-2014 TJ Holowaychuk @@ -70118,20 +70118,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -raw-body 2.5.1 - MIT -https://github.com/stream-utils/raw-body#readme - -Copyright (c) 2013-2014 Jonathan Ong -Copyright (c) 2014-2022 Douglas Christopher Wilson -Copyright (c) 2013-2014 Jonathan Ong -Copyright (c) 2014-2022 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +raw-body 2.5.1 - MIT +https://github.com/stream-utils/raw-body#readme + +Copyright (c) 2013-2014 Jonathan Ong +Copyright (c) 2014-2022 Douglas Christopher Wilson +Copyright (c) 2013-2014 Jonathan Ong +Copyright (c) 2014-2022 Douglas Christopher Wilson + The MIT License (MIT) Copyright (c) 2013-2014 Jonathan Ong @@ -70154,17 +70154,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -react 18.2.0 - MIT -https://reactjs.org/ - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +react 18.2.0 - MIT +https://reactjs.org/ + +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -70186,18 +70186,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-dev-utils 12.0.1 - MIT -https://github.com/facebook/create-react-app#readme - -Copyright (c) 2013-present, Facebook, Inc. -Copyright (c) 2015-present, Facebook, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-dev-utils 12.0.1 - MIT +https://github.com/facebook/create-react-app#readme + +Copyright (c) 2013-present, Facebook, Inc. +Copyright (c) 2015-present, Facebook, Inc. + MIT License Copyright (c) 2013-present, Facebook, Inc. @@ -70219,19 +70219,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-dom 18.2.0 - MIT -https://reactjs.org/ - -(c) Ka (c) -(c) http://www.w3.org/1999/xhtml -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-dom 18.2.0 - MIT +https://reactjs.org/ + +(c) Ka (c) +(c) http://www.w3.org/1999/xhtml +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -70253,18 +70253,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-error-overlay 6.0.11 - MIT -https://github.com/facebook/create-react-app#readme - -(c) 2021 Denis Pushkarev -Copyright (c) 2013-present, Facebook, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-error-overlay 6.0.11 - MIT +https://github.com/facebook/create-react-app#readme + +(c) 2021 Denis Pushkarev +Copyright (c) 2013-present, Facebook, Inc. + MIT License Copyright (c) 2013-present, Facebook, Inc. @@ -70286,18 +70286,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-fast-compare 3.2.2 - MIT -https://github.com/FormidableLabs/react-fast-compare - -Copyright (c) 2018 Formidable Labs -Copyright (c) 2017 Evgeny Poberezkin - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-fast-compare 3.2.2 - MIT +https://github.com/FormidableLabs/react-fast-compare + +Copyright (c) 2018 Formidable Labs +Copyright (c) 2017 Evgeny Poberezkin + MIT License Copyright (c) 2018 Formidable Labs @@ -70320,17 +70320,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-is 16.13.1 - MIT -https://reactjs.org/ - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-is 16.13.1 - MIT +https://reactjs.org/ + +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -70352,16 +70352,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-json-view-lite 1.2.1 - MIT -https://github.com/AnyRoad/react-json-view-lite - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-json-view-lite 1.2.1 - MIT +https://github.com/AnyRoad/react-json-view-lite + + MIT License Copyright (c) @@ -70370,17 +70370,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-loadable-ssr-addon-v5-slorber 1.0.1 - MIT - - -Copyright (c) 2018 Marcos Goncalves - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-loadable-ssr-addon-v5-slorber 1.0.1 - MIT + + +Copyright (c) 2018 Marcos Goncalves + MIT License Copyright (c) 2018 Marcos Gonçalves @@ -70402,24 +70402,24 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-router 5.3.4 - MIT -https://reactrouter.com/ - -(c) Sindre Sorhus -Copyright 2015, Yahoo! Inc. -Copyright (c) React Training 2015-2019 -Copyright (c) Remix Software 2020-2022 -Copyright (c) 2013-present, Facebook, Inc. -Copyright (c) Facebook, Inc. and its affiliates -Copyright (c) 2019-present StringEpsilon -Copyright (c) 2017-2019 James Kyle https://github.com/StringEpsilon/mini-create-react-context - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-router 5.3.4 - MIT +https://reactrouter.com/ + +(c) Sindre Sorhus +Copyright 2015, Yahoo! Inc. +Copyright (c) React Training 2015-2019 +Copyright (c) Remix Software 2020-2022 +Copyright (c) 2013-present, Facebook, Inc. +Copyright (c) Facebook, Inc. and its affiliates +Copyright (c) 2019-present StringEpsilon +Copyright (c) 2017-2019 James Kyle https://github.com/StringEpsilon/mini-create-react-context + MIT License Copyright (c) React Training 2015-2019 @@ -70442,17 +70442,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-router-config 5.1.1 - MIT -https://github.com/ReactTraining/react-router#readme - -Copyright (c) React Training 2016-2018 - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-router-config 5.1.1 - MIT +https://github.com/ReactTraining/react-router#readme + +Copyright (c) React Training 2016-2018 + MIT License Copyright (c) React Training 2016-2018 @@ -70474,22 +70474,22 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-router-dom 5.3.4 - MIT -https://reactrouter.com/ - -(c) Sindre Sorhus -Copyright 2015, Yahoo! Inc. -Copyright (c) React Training 2015-2019 -Copyright (c) Remix Software 2020-2022 -Copyright (c) 2013-present, Facebook, Inc. -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-router-dom 5.3.4 - MIT +https://reactrouter.com/ + +(c) Sindre Sorhus +Copyright 2015, Yahoo! Inc. +Copyright (c) React Training 2015-2019 +Copyright (c) Remix Software 2020-2022 +Copyright (c) 2013-present, Facebook, Inc. +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) React Training 2015-2019 @@ -70512,17 +70512,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -readable-stream 2.3.8 - MIT -https://github.com/nodejs/readable-stream#readme - -Copyright Joyent, Inc. and other Node contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +readable-stream 2.3.8 - MIT +https://github.com/nodejs/readable-stream#readme + +Copyright Joyent, Inc. and other Node contributors + Node.js is licensed for use as follows: """ @@ -70570,17 +70570,17 @@ 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. """ - - ---------------------------------------------------------- - ---------------------------------------------------------- - -readable-stream 3.6.2 - MIT -https://github.com/nodejs/readable-stream#readme - -Copyright Joyent, Inc. and other Node contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +readable-stream 3.6.2 - MIT +https://github.com/nodejs/readable-stream#readme + +Copyright Joyent, Inc. and other Node contributors + Node.js is licensed for use as follows: """ @@ -70628,18 +70628,18 @@ 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. """ - - ---------------------------------------------------------- - ---------------------------------------------------------- - -readdirp 3.6.0 - MIT -https://github.com/paulmillr/readdirp - -Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com) -Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +readdirp 3.6.0 - MIT +https://github.com/paulmillr/readdirp + +Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com) +Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller + MIT License Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com) @@ -70661,17 +70661,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -reading-time 1.5.0 - MIT -https://github.com/ngryman/reading-time#readme - -Copyright (c) Nicolas Gryman - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +reading-time 1.5.0 - MIT +https://github.com/ngryman/reading-time#readme + +Copyright (c) Nicolas Gryman + The MIT License (MIT) Copyright (c) Nicolas Gryman (ngryman.sh) @@ -70693,17 +70693,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -rechoir 0.6.2 - MIT -https://github.com/tkellen/node-rechoir - -Copyright (c) 2015 Tyler Kellen - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +rechoir 0.6.2 - MIT +https://github.com/tkellen/node-rechoir + +Copyright (c) 2015 Tyler Kellen + Copyright (c) 2015 Tyler Kellen Permission is hereby granted, free of charge, to any person @@ -70726,16 +70726,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -recursive-readdir 2.2.3 - MIT -https://github.com/jergason/recursive-readdir#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +recursive-readdir 2.2.3 - MIT +https://github.com/jergason/recursive-readdir#readme + + The MIT License (MIT) Copyright (c) @@ -70757,17 +70757,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -regenerate 1.4.2 - MIT -https://mths.be/regenerate - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +regenerate 1.4.2 - MIT +https://mths.be/regenerate + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -70788,17 +70788,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -regenerate-unicode-properties 10.1.1 - MIT -https://github.com/mathiasbynens/regenerate-unicode-properties - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +regenerate-unicode-properties 10.1.1 - MIT +https://github.com/mathiasbynens/regenerate-unicode-properties + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -70819,17 +70819,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -regenerator-runtime 0.14.1 - MIT -https://github.com/facebook/regenerator/tree/main#readme - -Copyright (c) 2014-present, Facebook, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +regenerator-runtime 0.14.1 - MIT +https://github.com/facebook/regenerator/tree/main#readme + +Copyright (c) 2014-present, Facebook, Inc. + MIT License Copyright (c) 2014-present, Facebook, Inc. @@ -70851,17 +70851,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -regenerator-transform 0.15.2 - MIT -https://github.com/facebook/regenerator/tree/main#readme - -Copyright (c) 2014-present, Facebook, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +regenerator-transform 0.15.2 - MIT +https://github.com/facebook/regenerator/tree/main#readme + +Copyright (c) 2014-present, Facebook, Inc. + MIT License Copyright (c) 2014-present, Facebook, Inc. @@ -70883,17 +70883,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -regexpu-core 5.3.2 - MIT -https://mths.be/regexpu - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +regexpu-core 5.3.2 - MIT +https://mths.be/regexpu + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -70914,18 +70914,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -registry-auth-token 5.0.2 - MIT -https://github.com/rexxars/registry-auth-token#readme - -Copyright (c) 2016 Espen Hovlandsdal -(c) Espen Hovlandsdal (https://espen.codes/) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +registry-auth-token 5.0.2 - MIT +https://github.com/rexxars/registry-auth-token#readme + +Copyright (c) 2016 Espen Hovlandsdal +(c) Espen Hovlandsdal (https://espen.codes/) + The MIT License (MIT) Copyright (c) 2016 Espen Hovlandsdal @@ -70947,17 +70947,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -registry-url 6.0.1 - MIT -https://github.com/sindresorhus/registry-url#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +registry-url 6.0.1 - MIT +https://github.com/sindresorhus/registry-url#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -70967,18 +70967,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -rehype-raw 7.0.0 - MIT -https://github.com/rehypejs/rehype-raw#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +rehype-raw 7.0.0 - MIT +https://github.com/rehypejs/rehype-raw#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -71001,17 +71001,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -relateurl 0.2.7 - MIT -https://github.com/stevenvachon/relateurl - -Copyright (c) Steven Vachon (svachon.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +relateurl 0.2.7 - MIT +https://github.com/stevenvachon/relateurl + +Copyright (c) Steven Vachon (svachon.com) + The MIT License (MIT) Copyright (c) Steven Vachon (svachon.com) @@ -71033,18 +71033,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -remark-directive 3.0.0 - MIT -https://github.com/remarkjs/remark-directive#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +remark-directive 3.0.0 - MIT +https://github.com/remarkjs/remark-directive#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -71067,17 +71067,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -remark-emoji 4.0.1 - MIT -https://github.com/rhysd/remark-emoji#readme - -Copyright (c) 2016 rhysd - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +remark-emoji 4.0.1 - MIT +https://github.com/rhysd/remark-emoji#readme + +Copyright (c) 2016 rhysd + The MIT License (MIT) Copyright (c) 2016 rhysd @@ -71098,18 +71098,18 @@ PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -remark-frontmatter 5.0.0 - MIT -https://github.com/remarkjs/remark-frontmatter#readme - -(c) Titus Wormer -Copyright (c) 2017 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +remark-frontmatter 5.0.0 - MIT +https://github.com/remarkjs/remark-frontmatter#readme + +(c) Titus Wormer +Copyright (c) 2017 Titus Wormer + (The MIT License) Copyright (c) 2017 Titus Wormer @@ -71132,18 +71132,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -remark-gfm 4.0.0 - MIT -https://github.com/remarkjs/remark-gfm#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +remark-gfm 4.0.0 - MIT +https://github.com/remarkjs/remark-gfm#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -71166,18 +71166,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -remark-mdx 3.0.0 - MIT -https://mdxjs.com/ - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +remark-mdx 3.0.0 - MIT +https://mdxjs.com/ + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -71199,18 +71199,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -remark-parse 11.0.0 - MIT -https://remark.js.org/ - -(c) Titus Wormer -Copyright (c) 2014 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +remark-parse 11.0.0 - MIT +https://remark.js.org/ + +(c) Titus Wormer +Copyright (c) 2014 Titus Wormer + (The MIT License) Copyright (c) 2014 Titus Wormer @@ -71232,18 +71232,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -remark-rehype 11.0.0 - MIT -https://github.com/remarkjs/remark-rehype#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +remark-rehype 11.0.0 - MIT +https://github.com/remarkjs/remark-rehype#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -71266,18 +71266,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -remark-stringify 11.0.0 - MIT -https://remark.js.org/ - -(c) Titus Wormer -Copyright (c) 2014 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +remark-stringify 11.0.0 - MIT +https://remark.js.org/ + +(c) Titus Wormer +Copyright (c) 2014 Titus Wormer + (The MIT License) Copyright (c) 2014 Titus Wormer @@ -71299,17 +71299,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -renderkid 3.0.0 - MIT -https://github.com/AriaMinaei/RenderKid#readme - -Copyright (c) 2015 Aria Minaei - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +renderkid 3.0.0 - MIT +https://github.com/AriaMinaei/RenderKid#readme + +Copyright (c) 2015 Aria Minaei + The MIT License (MIT) Copyright (c) 2015 Aria Minaei @@ -71330,18 +71330,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -require-from-string 2.0.2 - MIT -https://github.com/floatdrop/require-from-string#readme - -(c) Vsevolod Strukchinsky (http://github.com/floatdrop) -Copyright (c) Vsevolod Strukchinsky - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +require-from-string 2.0.2 - MIT +https://github.com/floatdrop/require-from-string#readme + +(c) Vsevolod Strukchinsky (http://github.com/floatdrop) +Copyright (c) Vsevolod Strukchinsky + The MIT License (MIT) Copyright (c) Vsevolod Strukchinsky (github.com/floatdrop) @@ -71363,17 +71363,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -require-like 0.1.2 - MIT -https://github.com/felixge/node-require-like - -Copyright (c) 2011 Felix Geisendorfer (felix@debuggable.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +require-like 0.1.2 - MIT +https://github.com/felixge/node-require-like + +Copyright (c) 2011 Felix Geisendorfer (felix@debuggable.com) + Copyright (c) 2011 Felix Geisendörfer (felix@debuggable.com) Permission is hereby granted, free of charge, to any person obtaining a copy @@ -71393,17 +71393,17 @@ Copyright (c) 2011 Felix Geisendörfer (felix@debuggable.com) 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -requires-port 1.0.0 - MIT -https://github.com/unshiftio/requires-port - -Copyright (c) 2015 Unshift.io, Arnout Kazemier - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +requires-port 1.0.0 - MIT +https://github.com/unshiftio/requires-port + +Copyright (c) 2015 Unshift.io, Arnout Kazemier + The MIT License (MIT) Copyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors. @@ -71426,17 +71426,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -resolve 1.22.8 - MIT -https://github.com/browserify/resolve#readme - -Copyright (c) 2012 James Halliday - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +resolve 1.22.8 - MIT +https://github.com/browserify/resolve#readme + +Copyright (c) 2012 James Halliday + MIT License Copyright (c) 2012 James Halliday @@ -71458,17 +71458,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -resolve-alpn 1.2.1 - MIT -https://github.com/szmarczak/resolve-alpn#readme - -Copyright (c) 2018 Szymon Marczak - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +resolve-alpn 1.2.1 - MIT +https://github.com/szmarczak/resolve-alpn#readme + +Copyright (c) 2018 Szymon Marczak + MIT License Copyright (c) 2018 Szymon Marczak @@ -71491,18 +71491,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -resolve-from 4.0.0 - MIT -https://github.com/sindresorhus/resolve-from#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +resolve-from 4.0.0 - MIT +https://github.com/sindresorhus/resolve-from#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -71512,17 +71512,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -resolve-pathname 3.0.0 - MIT -https://github.com/mjackson/resolve-pathname#readme - -Copyright (c) Michael Jackson 2016-2018 - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +resolve-pathname 3.0.0 - MIT +https://github.com/mjackson/resolve-pathname#readme + +Copyright (c) Michael Jackson 2016-2018 + MIT License Copyright (c) Michael Jackson 2016-2018 @@ -71544,18 +71544,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -responselike 3.0.0 - MIT -https://github.com/sindresorhus/responselike#readme - -Copyright (c) Luke Childs (https://lukechilds.co.uk) -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +responselike 3.0.0 - MIT +https://github.com/sindresorhus/responselike#readme + +Copyright (c) Luke Childs (https://lukechilds.co.uk) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -71566,17 +71566,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -retry 0.13.1 - MIT -https://github.com/tim-kos/node-retry - -Copyright (c) 2011 Tim Koschutzki (tim@debuggable.com) Felix Geisendorfer (felix@debuggable.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +retry 0.13.1 - MIT +https://github.com/tim-kos/node-retry + +Copyright (c) 2011 Tim Koschutzki (tim@debuggable.com) Felix Geisendorfer (felix@debuggable.com) + Copyright (c) 2011: Tim Koschützki (tim@debuggable.com) Felix Geisendörfer (felix@debuggable.com) @@ -71598,17 +71598,17 @@ Felix Geisendörfer (felix@debuggable.com) 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -reusify 1.0.4 - MIT -https://github.com/mcollina/reusify#readme - -Copyright (c) 2015 Matteo Collina - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +reusify 1.0.4 - MIT +https://github.com/mcollina/reusify#readme + +Copyright (c) 2015 Matteo Collina + The MIT License (MIT) Copyright (c) 2015 Matteo Collina @@ -71631,18 +71631,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -rtlcss 4.1.1 - MIT -https://rtlcss.com/ - -Copyright 2017 Mohammad Younes -Copyright (c) 2014-2016 Mohammad Younes - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +rtlcss 4.1.1 - MIT +https://rtlcss.com/ + +Copyright 2017 Mohammad Younes +Copyright (c) 2014-2016 Mohammad Younes + The MIT License (MIT) Copyright (c) 2014-2016 Mohammad Younes @@ -71664,18 +71664,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -run-parallel 1.2.0 - MIT -https://github.com/feross/run-parallel - -Copyright (c) Feross Aboukhadijeh -Copyright (c) Feross Aboukhadijeh (http://feross.org) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +run-parallel 1.2.0 - MIT +https://github.com/feross/run-parallel + +Copyright (c) Feross Aboukhadijeh +Copyright (c) Feross Aboukhadijeh (http://feross.org) + The MIT License (MIT) Copyright (c) Feross Aboukhadijeh @@ -71696,18 +71696,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -safe-buffer 5.1.2 - MIT -https://github.com/feross/safe-buffer - -Copyright (c) Feross Aboukhadijeh -Copyright (c) Feross Aboukhadijeh (http://feross.org) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +safe-buffer 5.1.2 - MIT +https://github.com/feross/safe-buffer + +Copyright (c) Feross Aboukhadijeh +Copyright (c) Feross Aboukhadijeh (http://feross.org) + The MIT License (MIT) Copyright (c) Feross Aboukhadijeh @@ -71729,18 +71729,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -safe-buffer 5.2.1 - MIT -https://github.com/feross/safe-buffer - -Copyright (c) Feross Aboukhadijeh -Copyright (c) Feross Aboukhadijeh (http://feross.org) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +safe-buffer 5.2.1 - MIT +https://github.com/feross/safe-buffer + +Copyright (c) Feross Aboukhadijeh +Copyright (c) Feross Aboukhadijeh (http://feross.org) + The MIT License (MIT) Copyright (c) Feross Aboukhadijeh @@ -71762,17 +71762,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -safer-buffer 2.1.2 - MIT -https://github.com/ChALkeR/safer-buffer#readme - -Copyright (c) 2018 Nikita Skovoroda - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +safer-buffer 2.1.2 - MIT +https://github.com/ChALkeR/safer-buffer#readme + +Copyright (c) 2018 Nikita Skovoroda + MIT License Copyright (c) 2018 Nikita Skovoroda @@ -71794,17 +71794,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -scheduler 0.23.0 - MIT -https://reactjs.org/ - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +scheduler 0.23.0 - MIT +https://reactjs.org/ + +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -71826,17 +71826,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -schema-utils 2.7.0 - MIT -https://github.com/webpack/schema-utils - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +schema-utils 2.7.0 - MIT +https://github.com/webpack/schema-utils + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -71857,17 +71857,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -schema-utils 3.3.0 - MIT -https://github.com/webpack/schema-utils - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +schema-utils 3.3.0 - MIT +https://github.com/webpack/schema-utils + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -71888,17 +71888,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -schema-utils 4.2.0 - MIT -https://github.com/webpack/schema-utils - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +schema-utils 4.2.0 - MIT +https://github.com/webpack/schema-utils + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -71919,18 +71919,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -section-matter 1.0.0 - MIT -https://github.com/jonschlinkert/section-matter - -Copyright (c) 2017, Jon Schlinkert -Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +section-matter 1.0.0 - MIT +https://github.com/jonschlinkert/section-matter + +Copyright (c) 2017, Jon Schlinkert +Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2017, Jon Schlinkert. @@ -71952,17 +71952,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -select-hose 2.0.0 - MIT -https://github.com/indutny/select-hose#readme - -Copyright Fedor Indutny, 2015 - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +select-hose 2.0.0 - MIT +https://github.com/indutny/select-hose#readme + +Copyright Fedor Indutny, 2015 + MIT License Copyright (c) @@ -71971,17 +71971,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -selfsigned 2.4.1 - MIT -https://github.com/jfromaniello/selfsigned#readme - -Copyright (c) 2013 Jose F. Romaniello - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +selfsigned 2.4.1 - MIT +https://github.com/jfromaniello/selfsigned#readme + +Copyright (c) 2013 Jose F. Romaniello + MIT License Copyright (c) 2013 José F. Romaniello @@ -72004,17 +72004,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -semver-diff 4.0.0 - MIT -https://github.com/sindresorhus/semver-diff#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +semver-diff 4.0.0 - MIT +https://github.com/sindresorhus/semver-diff#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -72024,18 +72024,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -send 0.18.0 - MIT -https://github.com/pillarjs/send#readme - -Copyright (c) 2012 TJ Holowaychuk -Copyright (c) 2014-2022 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +send 0.18.0 - MIT +https://github.com/pillarjs/send#readme + +Copyright (c) 2012 TJ Holowaychuk +Copyright (c) 2014-2022 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2012 TJ Holowaychuk @@ -72059,18 +72059,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -serve-handler 6.1.5 - MIT -https://github.com/zeit/serve-handler#readme - -Copyright (c) 2018 ZEIT, Inc. -Copyright (c) 2014 Scott Corgan - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +serve-handler 6.1.5 - MIT +https://github.com/zeit/serve-handler#readme + +Copyright (c) 2018 ZEIT, Inc. +Copyright (c) 2014 Scott Corgan + MIT License Copyright (c) 2018 ZEIT, Inc. @@ -72092,21 +72092,21 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -serve-index 1.9.1 - MIT -https://github.com/expressjs/serve-index#readme - -Copyright (c) 2011 LearnBoost -Copyright (c) 2010 Sencha Inc. -Copyright (c) 2011 Sencha Inc. -Copyright (c) 2011 TJ Holowaychuk -Copyright (c) 2014-2015 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +serve-index 1.9.1 - MIT +https://github.com/expressjs/serve-index#readme + +Copyright (c) 2011 LearnBoost +Copyright (c) 2010 Sencha Inc. +Copyright (c) 2011 Sencha Inc. +Copyright (c) 2011 TJ Holowaychuk +Copyright (c) 2014-2015 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2010 Sencha Inc. @@ -72132,20 +72132,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -serve-static 1.15.0 - MIT -https://github.com/expressjs/serve-static#readme - -Copyright (c) 2011 LearnBoost -Copyright (c) 2010 Sencha Inc. -Copyright (c) 2011 TJ Holowaychuk -Copyright (c) 2014-2016 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +serve-static 1.15.0 - MIT +https://github.com/expressjs/serve-static#readme + +Copyright (c) 2011 LearnBoost +Copyright (c) 2010 Sencha Inc. +Copyright (c) 2011 TJ Holowaychuk +Copyright (c) 2014-2016 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2010 Sencha Inc. @@ -72171,17 +72171,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -set-function-length 1.1.1 - MIT -https://github.com/ljharb/set-function-length#readme - -Copyright (c) Jordan Harband and contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +set-function-length 1.1.1 - MIT +https://github.com/ljharb/set-function-length#readme + +Copyright (c) Jordan Harband and contributors + MIT License Copyright (c) Jordan Harband and contributors @@ -72203,18 +72203,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -shallow-clone 3.0.1 - MIT -https://github.com/jonschlinkert/shallow-clone - -Copyright (c) 2015-present, Jon Schlinkert -Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +shallow-clone 3.0.1 - MIT +https://github.com/jonschlinkert/shallow-clone + +Copyright (c) 2015-present, Jon Schlinkert +Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2015-present, Jon Schlinkert. @@ -72236,17 +72236,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -shallowequal 1.1.0 - MIT -https://github.com/dashed/shallowequal#readme - -Copyright (c) 2017 Alberto Leal - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +shallowequal 1.1.0 - MIT +https://github.com/dashed/shallowequal#readme + +Copyright (c) 2017 Alberto Leal + MIT License Copyright (c) 2017 Alberto Leal (github.com/dashed) @@ -72268,17 +72268,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -shebang-command 2.0.0 - MIT -https://github.com/kevva/shebang-command#readme - -Copyright (c) Kevin Martensson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +shebang-command 2.0.0 - MIT +https://github.com/kevva/shebang-command#readme + +Copyright (c) Kevin Martensson + MIT License Copyright (c) Kevin Mårtensson (github.com/kevva) @@ -72288,18 +72288,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -shebang-regex 3.0.0 - MIT -https://github.com/sindresorhus/shebang-regex#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +shebang-regex 3.0.0 - MIT +https://github.com/sindresorhus/shebang-regex#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -72309,17 +72309,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -shell-quote 1.8.1 - MIT -https://github.com/ljharb/shell-quote - -Copyright (c) 2013 James Halliday (mail@substack.net) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +shell-quote 1.8.1 - MIT +https://github.com/ljharb/shell-quote + +Copyright (c) 2013 James Halliday (mail@substack.net) + The MIT License Copyright (c) 2013 James Halliday (mail@substack.net) @@ -72343,17 +72343,17 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -side-channel 1.0.4 - MIT -https://github.com/ljharb/side-channel#readme - -Copyright (c) 2019 Jordan Harband - +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +side-channel 1.0.4 - MIT +https://github.com/ljharb/side-channel#readme + +Copyright (c) 2019 Jordan Harband + MIT License Copyright (c) 2019 Jordan Harband @@ -72375,17 +72375,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -sirv 2.0.4 - MIT -https://github.com/lukeed/sirv#readme - -(c) Luke Edwards (https://lukeed.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +sirv 2.0.4 - MIT +https://github.com/lukeed/sirv#readme + +(c) Luke Edwards (https://lukeed.com) + MIT License Copyright (c) @@ -72394,18 +72394,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -sisteransi 1.0.5 - MIT -https://github.com/terkelg/sisteransi#readme - -(c) Terkel Gjervig (https://terkel.com) -Copyright (c) 2018 Terkel Gjervig Nielsen - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +sisteransi 1.0.5 - MIT +https://github.com/terkelg/sisteransi#readme + +(c) Terkel Gjervig (https://terkel.com) +Copyright (c) 2018 Terkel Gjervig Nielsen + MIT License Copyright (c) 2018 Terkel Gjervig Nielsen @@ -72427,19 +72427,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -sitemap 7.1.1 - MIT -https://github.com/ekalinin/sitemap.js#readme - -Copyright (c) 2011 Eugene Kalinin -Copyright JS Foundation and other contributors -copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +sitemap 7.1.1 - MIT +https://github.com/ekalinin/sitemap.js#readme + +Copyright (c) 2011 Eugene Kalinin +Copyright JS Foundation and other contributors +copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + (The MIT License) Copyright (c) 2011 Eugene Kalinin @@ -72462,16 +72462,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -skin-tone 2.0.0 - MIT -https://github.com/sindresorhus/skin-tone#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +skin-tone 2.0.0 - MIT +https://github.com/sindresorhus/skin-tone#readme + + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -72481,18 +72481,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -slash 3.0.0 - MIT -https://github.com/sindresorhus/slash#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +slash 3.0.0 - MIT +https://github.com/sindresorhus/slash#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -72502,17 +72502,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -sockjs 0.3.24 - MIT -https://github.com/sockjs/sockjs-node - -Copyright (c) 2011 VMware, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +sockjs 0.3.24 - MIT +https://github.com/sockjs/sockjs-node + +Copyright (c) 2011 VMware, Inc. + Parts of the code are derived from various open source projects. For code derived from Socket.IO by Guillermo Rauch see @@ -72542,17 +72542,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -sort-css-media-queries 2.1.0 - MIT -https://github.com/dutchenkoOleg/sort-css-media-queries#readme - -Copyright (c) 2017 Oleg Dutchenko - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +sort-css-media-queries 2.1.0 - MIT +https://github.com/dutchenkoOleg/sort-css-media-queries#readme + +Copyright (c) 2017 Oleg Dutchenko + MIT License Copyright (c) 2017 Oleg Dutchenko @@ -72574,17 +72574,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -source-map-support 0.5.21 - MIT -https://github.com/evanw/node-source-map-support#readme - -Copyright (c) 2014 Evan Wallace - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +source-map-support 0.5.21 - MIT +https://github.com/evanw/node-source-map-support#readme + +Copyright (c) 2014 Evan Wallace + The MIT License (MIT) Copyright (c) 2014 Evan Wallace @@ -72606,18 +72606,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -space-separated-tokens 2.0.2 - MIT -https://github.com/wooorm/space-separated-tokens#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +space-separated-tokens 2.0.2 - MIT +https://github.com/wooorm/space-separated-tokens#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -72640,17 +72640,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -spdy 4.0.2 - MIT -https://github.com/indutny/node-spdy - -Copyright Fedor Indutny, 2015 - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +spdy 4.0.2 - MIT +https://github.com/indutny/node-spdy + +Copyright Fedor Indutny, 2015 + MIT License Copyright (c) @@ -72659,17 +72659,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -spdy-transport 3.0.0 - MIT -https://github.com/spdy-http2/spdy-transport - -Copyright Fedor Indutny, 2015 - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +spdy-transport 3.0.0 - MIT +https://github.com/spdy-http2/spdy-transport + +Copyright Fedor Indutny, 2015 + MIT License Copyright (c) @@ -72678,17 +72678,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -srcset 4.0.0 - MIT -https://github.com/sindresorhus/srcset#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +srcset 4.0.0 - MIT +https://github.com/sindresorhus/srcset#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -72698,18 +72698,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -stable 0.1.8 - MIT -https://github.com/Two-Screen/stable#readme - -(c) 2018 Angry Bytes and contributors -Copyright (c) 2018 Angry Bytes and contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +stable 0.1.8 - MIT +https://github.com/Two-Screen/stable#readme + +(c) 2018 Angry Bytes and contributors +Copyright (c) 2018 Angry Bytes and contributors + MIT License Copyright (c) @@ -72718,20 +72718,20 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -statuses 2.0.1 - MIT -https://github.com/jshttp/statuses#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2016 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2016 Douglas Christopher Wilson - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +statuses 2.0.1 - MIT +https://github.com/jshttp/statuses#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2016 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2016 Douglas Christopher Wilson + The MIT License (MIT) @@ -72755,17 +72755,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -std-env 3.7.0 - MIT -https://github.com/unjs/std-env#readme - -Copyright (c) Pooya Parsa - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +std-env 3.7.0 - MIT +https://github.com/unjs/std-env#readme + +Copyright (c) Pooya Parsa + MIT License Copyright (c) Pooya Parsa @@ -72788,17 +72788,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -string_decoder 1.3.0 - MIT -https://github.com/nodejs/string_decoder - -Copyright Joyent, Inc. and other Node contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +string_decoder 1.3.0 - MIT +https://github.com/nodejs/string_decoder + +Copyright Joyent, Inc. and other Node contributors + Node.js is licensed for use as follows: """ @@ -72847,18 +72847,18 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ - - ---------------------------------------------------------- - ---------------------------------------------------------- - -stringify-entities 4.0.3 - MIT -https://github.com/wooorm/stringify-entities#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +stringify-entities 4.0.3 - MIT +https://github.com/wooorm/stringify-entities#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + (The MIT License) Copyright (c) 2015 Titus Wormer @@ -72881,17 +72881,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -string-width 4.2.3 - MIT -https://github.com/sindresorhus/string-width#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +string-width 4.2.3 - MIT +https://github.com/sindresorhus/string-width#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -72901,17 +72901,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -string-width 5.1.2 - MIT -https://github.com/sindresorhus/string-width#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +string-width 5.1.2 - MIT +https://github.com/sindresorhus/string-width#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -72921,17 +72921,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -strip-ansi 6.0.1 - MIT -https://github.com/chalk/strip-ansi#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +strip-ansi 6.0.1 - MIT +https://github.com/chalk/strip-ansi#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -72941,17 +72941,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -strip-ansi 7.1.0 - MIT -https://github.com/chalk/strip-ansi#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +strip-ansi 7.1.0 - MIT +https://github.com/chalk/strip-ansi#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -72961,18 +72961,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -strip-bom-string 1.0.0 - MIT -https://github.com/jonschlinkert/strip-bom-string - -Copyright (c) 2015, 2017, Jon Schlinkert -Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +strip-bom-string 1.0.0 - MIT +https://github.com/jonschlinkert/strip-bom-string + +Copyright (c) 2015, 2017, Jon Schlinkert +Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2015, 2017, Jon Schlinkert @@ -72994,18 +72994,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -strip-final-newline 2.0.0 - MIT -https://github.com/sindresorhus/strip-final-newline#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +strip-final-newline 2.0.0 - MIT +https://github.com/sindresorhus/strip-final-newline#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -73015,18 +73015,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -strip-json-comments 2.0.1 - MIT -https://github.com/sindresorhus/strip-json-comments#readme - -(c) Sindre Sorhus (http://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +strip-json-comments 2.0.1 - MIT +https://github.com/sindresorhus/strip-json-comments#readme + +(c) Sindre Sorhus (http://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + The MIT License (MIT) Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -73048,17 +73048,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -strip-json-comments 3.1.1 - MIT -https://github.com/sindresorhus/strip-json-comments#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +strip-json-comments 3.1.1 - MIT +https://github.com/sindresorhus/strip-json-comments#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -73068,18 +73068,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -stylehacks 5.1.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +stylehacks 5.1.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -73102,17 +73102,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -style-to-object 0.4.4 - MIT -https://github.com/remarkablemark/style-to-object#readme - -Copyright (c) 2017 Menglin Mark Xu - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +style-to-object 0.4.4 - MIT +https://github.com/remarkablemark/style-to-object#readme + +Copyright (c) 2017 Menglin Mark Xu + The MIT License (MIT) Copyright (c) 2017 Menglin "Mark" Xu @@ -73135,17 +73135,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -style-to-object 1.0.5 - MIT -https://github.com/remarkablemark/style-to-object#readme - -Copyright (c) 2017 Menglin Mark Xu - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +style-to-object 1.0.5 - MIT +https://github.com/remarkablemark/style-to-object#readme + +Copyright (c) 2017 Menglin Mark Xu + The MIT License (MIT) Copyright (c) 2017 Menglin "Mark" Xu @@ -73168,17 +73168,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -supports-color 7.2.0 - MIT -https://github.com/chalk/supports-color#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +supports-color 7.2.0 - MIT +https://github.com/chalk/supports-color#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -73188,17 +73188,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -supports-color 8.1.1 - MIT -https://github.com/chalk/supports-color#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +supports-color 8.1.1 - MIT +https://github.com/chalk/supports-color#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -73208,17 +73208,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -supports-preserve-symlinks-flag 1.0.0 - MIT -https://github.com/inspect-js/node-supports-preserve-symlinks-flag#readme - -Copyright (c) 2022 Inspect JS - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +supports-preserve-symlinks-flag 1.0.0 - MIT +https://github.com/inspect-js/node-supports-preserve-symlinks-flag#readme + +Copyright (c) 2022 Inspect JS + MIT License Copyright (c) 2022 Inspect JS @@ -73240,17 +73240,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -svgo 2.8.0 - MIT -https://github.com/svg/svgo - -Copyright (c) Kir Belevich - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +svgo 2.8.0 - MIT +https://github.com/svg/svgo + +Copyright (c) Kir Belevich + MIT License Copyright (c) Kir Belevich @@ -73272,16 +73272,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -svg-parser 2.0.4 - MIT -https://github.com/Rich-Harris/svg-parser#README - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +svg-parser 2.0.4 - MIT +https://github.com/Rich-Harris/svg-parser#README + + MIT License Copyright (c) @@ -73290,17 +73290,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -tapable 1.1.3 - MIT -https://github.com/webpack/tapable - -Copyright (c) Tobias Koppers - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +tapable 1.1.3 - MIT +https://github.com/webpack/tapable + +Copyright (c) Tobias Koppers + The MIT License Copyright (c) Tobias Koppers @sokra @@ -73322,17 +73322,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -tapable 2.2.1 - MIT -https://github.com/webpack/tapable - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +tapable 2.2.1 - MIT +https://github.com/webpack/tapable + +Copyright JS Foundation and other contributors + The MIT License Copyright JS Foundation and other contributors @@ -73354,17 +73354,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -terser-webpack-plugin 5.3.9 - MIT -https://github.com/webpack-contrib/terser-webpack-plugin - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +terser-webpack-plugin 5.3.9 - MIT +https://github.com/webpack-contrib/terser-webpack-plugin + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -73385,16 +73385,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -text-table 0.2.0 - MIT -https://github.com/substack/text-table - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +text-table 0.2.0 - MIT +https://github.com/substack/text-table + + This software is released under the MIT license: Permission is hereby granted, free of charge, to any person obtaining a copy of @@ -73413,17 +73413,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -thunky 1.1.0 - MIT -https://github.com/mafintosh/thunky#readme - -Copyright (c) 2018 Mathias Buus - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +thunky 1.1.0 - MIT +https://github.com/mafintosh/thunky#readme + +Copyright (c) 2018 Mathias Buus + The MIT License (MIT) Copyright (c) 2018 Mathias Buus @@ -73445,17 +73445,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -tiny-invariant 1.3.1 - MIT -https://github.com/alexreardon/tiny-invariant#readme - -Copyright (c) 2019 Alexander Reardon - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +tiny-invariant 1.3.1 - MIT +https://github.com/alexreardon/tiny-invariant#readme + +Copyright (c) 2019 Alexander Reardon + MIT License Copyright (c) 2019 Alexander Reardon @@ -73476,17 +73476,17 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -tiny-warning 1.0.3 - MIT - - -Copyright (c) 2019 Alexander Reardon - +SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +tiny-warning 1.0.3 - MIT + + +Copyright (c) 2019 Alexander Reardon + MIT License Copyright (c) 2019 Alexander Reardon @@ -73507,18 +73507,18 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -to-fast-properties 2.0.0 - MIT -https://github.com/sindresorhus/to-fast-properties#readme - -(c) Petka Antonov, John-David Dalton, Sindre Sorhus -Copyright (c) 2014 Petka Antonov 2015 Sindre Sorhus - +SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +to-fast-properties 2.0.0 - MIT +https://github.com/sindresorhus/to-fast-properties#readme + +(c) Petka Antonov, John-David Dalton, Sindre Sorhus +Copyright (c) 2014 Petka Antonov 2015 Sindre Sorhus + MIT License Copyright (c) 2014 Petka Antonov @@ -73529,18 +73529,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -toidentifier 1.0.1 - MIT -https://github.com/component/toidentifier#readme - -Copyright (c) 2016 Douglas Christopher Wilson -Copyright (c) 2016 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +toidentifier 1.0.1 - MIT +https://github.com/component/toidentifier#readme + +Copyright (c) 2016 Douglas Christopher Wilson +Copyright (c) 2016 Douglas Christopher Wilson + MIT License Copyright (c) 2016 Douglas Christopher Wilson @@ -73562,18 +73562,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -to-regex-range 5.0.1 - MIT -https://github.com/micromatch/to-regex-range - -Copyright (c) 2015-present, Jon Schlinkert -Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +to-regex-range 5.0.1 - MIT +https://github.com/micromatch/to-regex-range + +Copyright (c) 2015-present, Jon Schlinkert +Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2015-present, Jon Schlinkert. @@ -73595,18 +73595,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -totalist 3.0.1 - MIT -https://github.com/lukeed/totalist#readme - -(c) Luke Edwards (https://lukeed.com) -Copyright (c) Luke Edwards (lukeed.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +totalist 3.0.1 - MIT +https://github.com/lukeed/totalist#readme + +(c) Luke Edwards (https://lukeed.com) +Copyright (c) Luke Edwards (lukeed.com) + The MIT License (MIT) Copyright (c) Luke Edwards (lukeed.com) @@ -73628,18 +73628,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -trim-lines 3.0.1 - MIT -https://github.com/wooorm/trim-lines#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +trim-lines 3.0.1 - MIT +https://github.com/wooorm/trim-lines#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + (The MIT License) Copyright (c) 2015 Titus Wormer @@ -73662,18 +73662,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -trough 2.1.0 - MIT -https://github.com/wooorm/trough#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +trough 2.1.0 - MIT +https://github.com/wooorm/trough#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -73695,18 +73695,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -typedarray-to-buffer 3.1.5 - MIT -http://feross.org/ - -Copyright (c) Feross Aboukhadijeh -Copyright (c) Feross Aboukhadijeh (http://feross.org) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +typedarray-to-buffer 3.1.5 - MIT +http://feross.org/ + +Copyright (c) Feross Aboukhadijeh +Copyright (c) Feross Aboukhadijeh (http://feross.org) + The MIT License (MIT) Copyright (c) Feross Aboukhadijeh @@ -73728,20 +73728,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -type-is 1.6.18 - MIT -https://github.com/jshttp/type-is#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014-2015 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014-2015 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +type-is 1.6.18 - MIT +https://github.com/jshttp/type-is#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2015 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2015 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2014 Jonathan Ong @@ -73765,16 +73765,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -undici-types 5.26.5 - MIT -https://undici.nodejs.org/ - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +undici-types 5.26.5 - MIT +https://undici.nodejs.org/ + + MIT License Copyright (c) @@ -73783,17 +73783,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -unicode-canonical-property-names-ecmascript 2.0.0 - MIT -https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript - -Copyright Mathias Bynens - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +unicode-canonical-property-names-ecmascript 2.0.0 - MIT +https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -73814,17 +73814,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unicode-emoji-modifier-base 1.0.0 - MIT -https://github.com/mathiasbynens/unicode-emoji-modifier-base - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unicode-emoji-modifier-base 1.0.0 - MIT +https://github.com/mathiasbynens/unicode-emoji-modifier-base + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -73845,17 +73845,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unicode-match-property-ecmascript 2.0.0 - MIT -https://github.com/mathiasbynens/unicode-match-property-ecmascript - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unicode-match-property-ecmascript 2.0.0 - MIT +https://github.com/mathiasbynens/unicode-match-property-ecmascript + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -73876,17 +73876,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unicode-match-property-value-ecmascript 2.1.0 - MIT -https://github.com/mathiasbynens/unicode-match-property-value-ecmascript - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unicode-match-property-value-ecmascript 2.1.0 - MIT +https://github.com/mathiasbynens/unicode-match-property-value-ecmascript + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -73907,17 +73907,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unicode-property-aliases-ecmascript 2.1.0 - MIT -https://github.com/mathiasbynens/unicode-property-aliases-ecmascript - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unicode-property-aliases-ecmascript 2.1.0 - MIT +https://github.com/mathiasbynens/unicode-property-aliases-ecmascript + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -73938,19 +73938,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unified 11.0.4 - MIT -https://unifiedjs.com/ - -(c) Titus Wormer -(c) Titus Wormer (https://wooorm.com) -Copyright (c) 2015 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unified 11.0.4 - MIT +https://unifiedjs.com/ + +(c) Titus Wormer +(c) Titus Wormer (https://wooorm.com) +Copyright (c) 2015 Titus Wormer + (The MIT License) Copyright (c) 2015 Titus Wormer @@ -73972,17 +73972,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unique-string 3.0.0 - MIT -https://github.com/sindresorhus/unique-string#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unique-string 3.0.0 - MIT +https://github.com/sindresorhus/unique-string#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -73992,18 +73992,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unist-util-is 6.0.0 - MIT -https://github.com/syntax-tree/unist-util-is#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unist-util-is 6.0.0 - MIT +https://github.com/syntax-tree/unist-util-is#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + (The MIT license) Copyright (c) 2015 Titus Wormer @@ -74026,18 +74026,154 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unist-util-position 5.0.0 - MIT -https://github.com/syntax-tree/unist-util-position#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unist-util-position 5.0.0 - MIT +https://github.com/syntax-tree/unist-util-position#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + +(The MIT License) + +Copyright (c) 2015 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unist-util-position-from-estree 2.0.0 - MIT +https://github.com/syntax-tree/unist-util-position-from-estree#readme + +(c) Titus Wormer +Copyright (c) 2021 Titus Wormer + +(The MIT License) + +Copyright (c) 2021 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unist-util-remove-position 5.0.0 - MIT +https://github.com/syntax-tree/unist-util-remove-position#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + +(The MIT License) + +Copyright (c) 2016 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unist-util-stringify-position 4.0.0 - MIT +https://github.com/syntax-tree/unist-util-stringify-position#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + +(The MIT License) + +Copyright (c) 2016 Titus Wormer + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unist-util-visit 5.0.0 - MIT +https://github.com/syntax-tree/unist-util-visit#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + (The MIT License) Copyright (c) 2015 Titus Wormer @@ -74060,86 +74196,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unist-util-position-from-estree 2.0.0 - MIT -https://github.com/syntax-tree/unist-util-position-from-estree#readme - -(c) Titus Wormer -Copyright (c) 2021 Titus Wormer - -(The MIT License) -Copyright (c) 2021 Titus Wormer -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unist-util-remove-position 5.0.0 - MIT -https://github.com/syntax-tree/unist-util-remove-position#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - -(The MIT License) +unist-util-visit-parents 6.0.1 - MIT +https://github.com/syntax-tree/unist-util-visit-parents#readme +(c) Titus Wormer Copyright (c) 2016 Titus Wormer -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unist-util-stringify-position 4.0.0 - MIT -https://github.com/syntax-tree/unist-util-stringify-position#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - (The MIT License) Copyright (c) 2016 Titus Wormer @@ -74162,85 +74230,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unist-util-visit 5.0.0 - MIT -https://github.com/syntax-tree/unist-util-visit#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - -(The MIT License) -Copyright (c) 2015 Titus Wormer -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: +--------------------------------------------------------- -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +--------------------------------------------------------- -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unist-util-visit-parents 6.0.1 - MIT -https://github.com/syntax-tree/unist-util-visit-parents#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - -(The MIT License) - -Copyright (c) 2016 Titus Wormer - -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: +universalify 2.0.1 - MIT +https://github.com/RyanZim/universalify#readme -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Copyright (c) 2017, Ryan Zimmerman -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -universalify 2.0.1 - MIT -https://github.com/RyanZim/universalify#readme - -Copyright (c) 2017, Ryan Zimmerman - (The MIT License) Copyright (c) 2017, Ryan Zimmerman @@ -74261,18 +74261,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unpipe 1.0.0 - MIT -https://github.com/stream-utils/unpipe - -Copyright (c) 2015 Douglas Christopher Wilson -Copyright (c) 2015 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unpipe 1.0.0 - MIT +https://github.com/stream-utils/unpipe + +Copyright (c) 2015 Douglas Christopher Wilson +Copyright (c) 2015 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2015 Douglas Christopher Wilson @@ -74295,17 +74295,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -update-browserslist-db 1.0.13 - MIT -https://github.com/browserslist/update-db#readme - -Copyright 2022 Andrey Sitnik and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +update-browserslist-db 1.0.13 - MIT +https://github.com/browserslist/update-db#readme + +Copyright 2022 Andrey Sitnik and other contributors + The MIT License (MIT) Copyright 2022 Andrey Sitnik and other contributors @@ -74326,17 +74326,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -url-loader 4.1.1 - MIT -https://github.com/webpack-contrib/url-loader - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +url-loader 4.1.1 - MIT +https://github.com/webpack-contrib/url-loader + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -74357,17 +74357,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -utila 0.4.0 - MIT -https://github.com/AriaMinaei/utila - -Copyright (c) 2014 Aria Minaei - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +utila 0.4.0 - MIT +https://github.com/AriaMinaei/utila + +Copyright (c) 2014 Aria Minaei + The MIT License (MIT) Copyright (c) 2014 Aria Minaei @@ -74388,17 +74388,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -util-deprecate 1.0.2 - MIT -https://github.com/TooTallNate/util-deprecate - -Copyright (c) 2014 Nathan Rajlich - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +util-deprecate 1.0.2 - MIT +https://github.com/TooTallNate/util-deprecate + +Copyright (c) 2014 Nathan Rajlich + (The MIT License) Copyright (c) 2014 Nathan Rajlich @@ -74423,19 +74423,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -utility-types 3.10.0 - MIT -https://github.com/piotrwitek/utility-types - -Copyright (c) 2016 Piotr Witek -Copyright (c) 2016 Piotr Witek (http://piotrwitek.github.io) -Copyright (c) 2016 Piotr Witek (http://piotrwitek.github.io) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +utility-types 3.10.0 - MIT +https://github.com/piotrwitek/utility-types + +Copyright (c) 2016 Piotr Witek +Copyright (c) 2016 Piotr Witek (http://piotrwitek.github.io) +Copyright (c) 2016 Piotr Witek (http://piotrwitek.github.io) + MIT License Copyright (c) 2016 Piotr Witek (http://piotrwitek.github.io) @@ -74457,18 +74457,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -utils-merge 1.0.1 - MIT -https://github.com/jaredhanson/utils-merge#readme - -Copyright (c) 2013-2017 Jared Hanson -Copyright (c) 2013-2017 Jared Hanson < http://jaredhanson.net/ (http://jaredhanson.net/)> - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +utils-merge 1.0.1 - MIT +https://github.com/jaredhanson/utils-merge#readme + +Copyright (c) 2013-2017 Jared Hanson +Copyright (c) 2013-2017 Jared Hanson < http://jaredhanson.net/ (http://jaredhanson.net/)> + The MIT License (MIT) Copyright (c) 2013-2017 Jared Hanson @@ -74489,19 +74489,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -uuid 8.3.2 - MIT -https://github.com/uuidjs/uuid#readme - -Copyright 2011, Sebastian Tschan https://blueimp.net -Copyright (c) 2010-2020 Robert Kieffer and other contributors -Copyright (c) Paul Johnston 1999 - 2009 Other contributors Greg Holt, Andrew Kepert, Ydnar, Lostinet - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +uuid 8.3.2 - MIT +https://github.com/uuidjs/uuid#readme + +Copyright 2011, Sebastian Tschan https://blueimp.net +Copyright (c) 2010-2020 Robert Kieffer and other contributors +Copyright (c) Paul Johnston 1999 - 2009 Other contributors Greg Holt, Andrew Kepert, Ydnar, Lostinet + The MIT License (MIT) Copyright (c) 2010-2020 Robert Kieffer and other contributors @@ -74511,17 +74511,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -value-equal 1.0.1 - MIT -https://github.com/mjackson/value-equal#readme - -Copyright (c) Michael Jackson 2016-2018 - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +value-equal 1.0.1 - MIT +https://github.com/mjackson/value-equal#readme + +Copyright (c) Michael Jackson 2016-2018 + MIT License Copyright (c) Michael Jackson 2016-2018 @@ -74543,17 +74543,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -vary 1.1.2 - MIT -https://github.com/jshttp/vary#readme - -Copyright (c) 2014-2017 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +vary 1.1.2 - MIT +https://github.com/jshttp/vary#readme + +Copyright (c) 2014-2017 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2014-2017 Douglas Christopher Wilson @@ -74576,20 +74576,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -vfile 6.0.1 - MIT -https://github.com/vfile/vfile#readme - -(c) Titus Wormer -Copyright (c) 2013 James Halliday -Copyright Joyent, Inc. and other Node contributors -Copyright (c) 2015 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +vfile 6.0.1 - MIT +https://github.com/vfile/vfile#readme + +(c) Titus Wormer +Copyright (c) 2013 James Halliday +Copyright Joyent, Inc. and other Node contributors +Copyright (c) 2015 Titus Wormer + (The MIT License) Copyright (c) 2015 Titus Wormer @@ -74611,18 +74611,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -vfile-location 5.0.2 - MIT -https://github.com/vfile/vfile-location#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +vfile-location 5.0.2 - MIT +https://github.com/vfile/vfile-location#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -74645,18 +74645,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -vfile-message 4.0.2 - MIT -https://github.com/vfile/vfile-message#readme - -(c) Titus Wormer -Copyright (c) 2017 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +vfile-message 4.0.2 - MIT +https://github.com/vfile/vfile-message#readme + +(c) Titus Wormer +Copyright (c) 2017 Titus Wormer + (The MIT License) Copyright (c) 2017 Titus Wormer @@ -74679,17 +74679,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -watchpack 2.4.0 - MIT -https://github.com/webpack/watchpack - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +watchpack 2.4.0 - MIT +https://github.com/webpack/watchpack + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -74710,17 +74710,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -wbuf 1.7.3 - MIT -https://github.com/indutny/wbuf - -Copyright Fedor Indutny, 2014 - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +wbuf 1.7.3 - MIT +https://github.com/indutny/wbuf + +Copyright Fedor Indutny, 2014 + MIT License Copyright (c) @@ -74729,18 +74729,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -web-namespaces 2.0.1 - MIT -https://github.com/wooorm/web-namespaces#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +web-namespaces 2.0.1 - MIT +https://github.com/wooorm/web-namespaces#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -74763,17 +74763,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -webpack 5.89.0 - MIT -https://github.com/webpack/webpack - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +webpack 5.89.0 - MIT +https://github.com/webpack/webpack + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -74794,17 +74794,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -webpackbar 5.0.2 - MIT -https://github.com/unjs/webpackbar#readme - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +webpackbar 5.0.2 - MIT +https://github.com/unjs/webpackbar#readme + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -74825,23 +74825,23 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -webpack-bundle-analyzer 4.10.1 - MIT -https://github.com/webpack-contrib/webpack-bundle-analyzer - -Copyright (c) 2018 Jed Watson -(c) Michel Weststrate 2015 - 2018 -(c) Michel Weststrate 2015 - 2020 -Copyright 2002-2021, Carrot Search s.c -Copyright (c) 2014-2017, Jon Schlinkert -Copyright JS Foundation and other contributors -Copyright (c) 2017-present by Andrea Giammarchi - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +webpack-bundle-analyzer 4.10.1 - MIT +https://github.com/webpack-contrib/webpack-bundle-analyzer + +Copyright (c) 2018 Jed Watson +(c) Michel Weststrate 2015 - 2018 +(c) Michel Weststrate 2015 - 2020 +Copyright 2002-2021, Carrot Search s.c +Copyright (c) 2014-2017, Jon Schlinkert +Copyright JS Foundation and other contributors +Copyright (c) 2017-present by Andrea Giammarchi + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -74862,17 +74862,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -webpack-dev-middleware 5.3.4 - MIT -https://github.com/webpack/webpack-dev-middleware - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +webpack-dev-middleware 5.3.4 - MIT +https://github.com/webpack/webpack-dev-middleware + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -74893,17 +74893,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -webpack-dev-server 4.15.1 - MIT -https://github.com/webpack/webpack-dev-server#readme - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +webpack-dev-server 4.15.1 - MIT +https://github.com/webpack/webpack-dev-server#readme + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -74924,17 +74924,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -webpack-merge 5.10.0 - MIT -https://github.com/survivejs/webpack-merge - -Copyright (c) 2015 Juho Vepsalainen - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +webpack-merge 5.10.0 - MIT +https://github.com/survivejs/webpack-merge + +Copyright (c) 2015 Juho Vepsalainen + Copyright (c) 2015 Juho Vepsalainen Permission is hereby granted, free of charge, to any person obtaining @@ -74955,17 +74955,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -webpack-sources 3.2.3 - MIT -https://github.com/webpack/webpack-sources#readme - -Copyright (c) 2017 JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +webpack-sources 3.2.3 - MIT +https://github.com/webpack/webpack-sources#readme + +Copyright (c) 2017 JS Foundation and other contributors + MIT License Copyright (c) 2017 JS Foundation and other contributors @@ -74987,17 +74987,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -widest-line 4.0.1 - MIT -https://github.com/sindresorhus/widest-line#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +widest-line 4.0.1 - MIT +https://github.com/sindresorhus/widest-line#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -75007,18 +75007,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -wildcard 2.0.1 - MIT -https://github.com/DamonOehlman/wildcard#readme - -Copyright (c) 2023 Damon Oehlman -Copyright (c) 2023 Damon Oehlman - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +wildcard 2.0.1 - MIT +https://github.com/DamonOehlman/wildcard#readme + +Copyright (c) 2023 Damon Oehlman +Copyright (c) 2023 Damon Oehlman + The MIT License (MIT) Copyright (c) 2023 Damon Oehlman <damon.oehlman@gmail.com> @@ -75040,17 +75040,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -wrap-ansi 8.1.0 - MIT -https://github.com/chalk/wrap-ansi#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +wrap-ansi 8.1.0 - MIT +https://github.com/chalk/wrap-ansi#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -75060,17 +75060,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ws 7.5.9 - MIT -https://github.com/websockets/ws - -Copyright (c) 2011 Einar Otto Stangvik - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ws 7.5.9 - MIT +https://github.com/websockets/ws + +Copyright (c) 2011 Einar Otto Stangvik + The MIT License (MIT) Copyright (c) 2011 Einar Otto Stangvik @@ -75092,19 +75092,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ws 8.15.1 - MIT -https://github.com/websockets/ws - -Copyright (c) 2016 Luigi Pinca and contributors -Copyright (c) 2013 Arnout Kazemier and contributors -Copyright (c) 2011 Einar Otto Stangvik - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ws 8.15.1 - MIT +https://github.com/websockets/ws + +Copyright (c) 2016 Luigi Pinca and contributors +Copyright (c) 2013 Arnout Kazemier and contributors +Copyright (c) 2011 Einar Otto Stangvik + Copyright (c) 2011 Einar Otto Stangvik Copyright (c) 2013 Arnout Kazemier and contributors Copyright (c) 2016 Luigi Pinca and contributors @@ -75125,17 +75125,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -xdg-basedir 5.1.0 - MIT -https://github.com/sindresorhus/xdg-basedir#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +xdg-basedir 5.1.0 - MIT +https://github.com/sindresorhus/xdg-basedir#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -75145,49 +75145,49 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -xml-js 1.6.11 - MIT -https://github.com/nashwaan/xml-js#readme - -Copyright (c) 2016-2017 Yousuf Almarzooqi -Copyright Joyent, Inc. and other Node contributors. - -The MIT License (MIT) - -Copyright (c) 2016-2017 Yousuf Almarzooqi - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -yocto-queue 1.0.0 - MIT -https://github.com/sindresorhus/yocto-queue#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +xml-js 1.6.11 - MIT +https://github.com/nashwaan/xml-js#readme + +Copyright (c) 2016-2017 Yousuf Almarzooqi +Copyright Joyent, Inc. and other Node contributors. + +The MIT License (MIT) + +Copyright (c) 2016-2017 Yousuf Almarzooqi + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +yocto-queue 1.0.0 - MIT +https://github.com/sindresorhus/yocto-queue#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -75197,18 +75197,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -zwitch 2.0.4 - MIT -https://github.com/wooorm/zwitch#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +zwitch 2.0.4 - MIT +https://github.com/wooorm/zwitch#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -75231,17 +75231,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -type-fest 1.4.0 - MIT OR (CC0-1.0 AND MIT) -https://github.com/sindresorhus/type-fest#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +type-fest 1.4.0 - MIT OR (CC0-1.0 AND MIT) +https://github.com/sindresorhus/type-fest#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -75251,18 +75251,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -opener 1.5.2 - MIT OR WTFPL OR (MIT AND WTFPL) -https://github.com/domenic/opener#readme - -Copyright (c) 2004 Sam Hocevar -Copyright (c) 2012-2020 Domenic Denicola - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +opener 1.5.2 - MIT OR WTFPL OR (MIT AND WTFPL) +https://github.com/domenic/opener#readme + +Copyright (c) 2004 Sam Hocevar +Copyright (c) 2012-2020 Domenic Denicola + Dual licensed under WTFPL and MIT: --- @@ -75310,18 +75310,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -path-is-inside 1.0.2 - MIT OR WTFPL OR (MIT AND WTFPL) -https://github.com/domenic/path-is-inside#readme - -Copyright (c) 2004 Sam Hocevar -Copyright (c) 2013-2016 Domenic Denicola - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +path-is-inside 1.0.2 - MIT OR WTFPL OR (MIT AND WTFPL) +https://github.com/domenic/path-is-inside#readme + +Copyright (c) 2004 Sam Hocevar +Copyright (c) 2013-2016 Domenic Denicola + Dual licensed under WTFPL and MIT: --- @@ -75369,24 +75369,198 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-sql-driver/mysql v1.6.0 - MPL-2.0 - - -Copyright 2012 The Go-MySQL-Driver Authors -Copyright 2013 The Go-MySQL-Driver Authors -Copyright 2014 The Go-MySQL-Driver Authors -Copyright 2016 The Go-MySQL-Driver Authors -Copyright 2017 The Go-MySQL-Driver Authors -Copyright 2018 The Go-MySQL-Driver Authors -Copyright 2019 The Go-MySQL-Driver Authors -Copyright 2020 The Go-MySQL-Driver Authors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-sql-driver/mysql v1.6.0 - MPL-2.0 + + +Copyright 2012 The Go-MySQL-Driver Authors +Copyright 2013 The Go-MySQL-Driver Authors +Copyright 2014 The Go-MySQL-Driver Authors +Copyright 2016 The Go-MySQL-Driver Authors +Copyright 2017 The Go-MySQL-Driver Authors +Copyright 2018 The Go-MySQL-Driver Authors +Copyright 2019 The Go-MySQL-Driver Authors +Copyright 2020 The Go-MySQL-Driver Authors + +Mozilla Public License Version 2.0 + + 1. Definitions + + 1.1. "Contributor" means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. + + 1.2. "Contributor Version" means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor's Contribution. + + 1.3. "Contribution" means Covered Software of a particular Contributor. + + 1.4. "Covered Software" means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. + + 1.5. "Incompatible With Secondary Licenses" means + + (a) that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License. + + 1.6. "Executable Form" means any form of the work other than Source Code Form. + + 1.7. "Larger Work" means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software. + + 1.8. "License" means this document. + + 1.9. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. + + 1.10. "Modifications" means any of the following: + + (a) any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or + + (b) any new file in Source Code Form that contains any Covered Software. + + 1.11. "Patent Claims" of a Contributor means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. + + 1.12. "Secondary License" means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. + + 1.13. "Source Code Form" means the form of the work preferred for making modifications. + + 1.14. "You" (or "Your") means an individual or a legal entity exercising rights under this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. + + 2. License Grants and Conditions + + 2.1. Grants + + Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: + + (a) under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and + + (b) under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version. + + 2.2. Effective Date + + The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution. + + 2.3. Limitations on Grant Scope + + The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor: + + (a) for any code that a Contributor has removed from Covered Software; or + + (b) for infringements caused by: (i) Your and any other third party's modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or + + (c) under Patent Claims infringed by Covered Software in the absence of its Contributions. + + This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4). + + 2.4. Subsequent Licenses + + No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3). + + 2.5. Representation + + Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License. + + 2.6. Fair Use + + This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents. + + 2.7. Conditions + + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1. + + 3. Responsibilities + + 3.1. Distribution of Source Form + + All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients' rights in the Source Code Form. + + 3.2. Distribution of Executable Form + + If You distribute Covered Software in Executable Form then: + + (a) such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and + + (b) You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients' rights in the Source Code Form under this License. + + 3.3. Distribution of a Larger Work + + You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s). + + 3.4. Notices + + You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies. + + 3.5. Application of Additional Terms + + You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. + + 4. Inability to Comply Due to Statute or Regulation + + If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. + + 5. Termination + + 5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice. + + 5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate. + + 5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination. + + 6. Disclaimer of Warranty + + Covered Software is provided under this License on an "as is" basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer. + + 7. Limitation of Liability + + Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. + + 8. Litigation + + Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party's ability to bring cross-claims or counter-claims. + + 9. Miscellaneous + + This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor. + + 10. Versions of the License + + 10.1. New Versions + + Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number. + + 10.2. Effect of New Versions + + You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward. + + 10.3. Modified Versions + + If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License). + + 10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses + + If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached. Exhibit A - Source Code Form License Notice + +This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice + +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fhashicorp%2fconsul/api v1.26.1 - MPL-2.0 + + +Copyright (c) HashiCorp, Inc. +Copyright (c) 2020 HashiCorp, Inc. + Mozilla Public License Version 2.0 1. Definitions @@ -75549,18 +75723,18 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fhashicorp%2fconsul/api v1.26.1 - MPL-2.0 - - -Copyright (c) HashiCorp, Inc. -Copyright (c) 2020 HashiCorp, Inc. - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp%2Fconsul/sdk v0.15.0 - MPL-2.0 + + +Copyright (c) HashiCorp, Inc. +Copyright (c) 2020 HashiCorp, Inc. + Mozilla Public License Version 2.0 1. Definitions @@ -75723,18 +75897,17 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp%2Fconsul/sdk v0.15.0 - MPL-2.0 - - -Copyright (c) HashiCorp, Inc. -Copyright (c) 2020 HashiCorp, Inc. - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fhashicorp%2fgo-immutable-radix/v2 v2.1.0 - MPL-2.0 + + +Copyright (c) 2015 HashiCorp, Inc. + Mozilla Public License Version 2.0 1. Definitions @@ -75897,17 +76070,20 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fhashicorp%2fgo-immutable-radix/v2 v2.1.0 - MPL-2.0 - - -Copyright (c) 2015 HashiCorp, Inc. - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fhashicorp%2fgolang-lru/v2 v2.0.7 - MPL-2.0 + + +Copyright (c) HashiCorp, Inc. +Copyright 2009 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright (c) 2014 HashiCorp, Inc. + Mozilla Public License Version 2.0 1. Definitions @@ -76070,20 +76246,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fhashicorp%2fgolang-lru/v2 v2.0.7 - MPL-2.0 - - -Copyright (c) HashiCorp, Inc. -Copyright 2009 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright (c) 2014 HashiCorp, Inc. - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/errwrap v1.1.0 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -76246,16 +76418,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/errwrap v1.1.0 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-cleanhttp v0.5.2 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -76418,16 +76590,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-cleanhttp v0.5.2 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-immutable-radix v1.3.1 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -76590,188 +76762,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-immutable-radix v1.3.1 - MPL-2.0 - - - -Mozilla Public License Version 2.0 - - 1. Definitions - - 1.1. "Contributor" means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. - - 1.2. "Contributor Version" means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor's Contribution. - - 1.3. "Contribution" means Covered Software of a particular Contributor. - - 1.4. "Covered Software" means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. - - 1.5. "Incompatible With Secondary Licenses" means - - (a) that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or - - (b) that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License. - - 1.6. "Executable Form" means any form of the work other than Source Code Form. - - 1.7. "Larger Work" means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software. - - 1.8. "License" means this document. - - 1.9. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. - - 1.10. "Modifications" means any of the following: - - (a) any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or - - (b) any new file in Source Code Form that contains any Covered Software. - - 1.11. "Patent Claims" of a Contributor means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. - - 1.12. "Secondary License" means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. - - 1.13. "Source Code Form" means the form of the work preferred for making modifications. - - 1.14. "You" (or "Your") means an individual or a legal entity exercising rights under this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - - 2. License Grants and Conditions - - 2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: - - (a) under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and - - (b) under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version. - - 2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution. - - 2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor: - - (a) for any code that a Contributor has removed from Covered Software; or - - (b) for infringements caused by: (i) Your and any other third party's modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or - - (c) under Patent Claims infringed by Covered Software in the absence of its Contributions. - - This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4). - - 2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3). - - 2.5. Representation - - Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License. - - 2.6. Fair Use - - This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents. - - 2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1. - - 3. Responsibilities - - 3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients' rights in the Source Code Form. - - 3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - (a) such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and - - (b) You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients' rights in the Source Code Form under this License. - - 3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s). - - 3.4. Notices - - You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies. - - 3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. - - 4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - - 5. Termination - - 5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice. - - 5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate. - - 5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination. - - 6. Disclaimer of Warranty - - Covered Software is provided under this License on an "as is" basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer. - - 7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. - - 8. Litigation - - Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party's ability to bring cross-claims or counter-claims. +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - 9. Miscellaneous +--------------------------------------------------------- - This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor. +--------------------------------------------------------- - 10. Versions of the License +github.com%2Fhashicorp/golang-lru v0.5.4 - MPL-2.0 - 10.1. New Versions - Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number. - - 10.2. Effect of New Versions - You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward. - - 10.3. Modified Versions - - If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License). - - 10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses - - If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached. Exhibit A - Source Code Form License Notice - -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice - -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/golang-lru v0.5.4 - MPL-2.0 - - - Mozilla Public License Version 2.0 1. Definitions @@ -76934,16 +76934,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-multierror v1.1.1 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-multierror v1.1.1 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -77106,16 +77106,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-retryablehttp v0.5.3 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-retryablehttp v0.5.3 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -77278,16 +77278,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-rootcerts v1.0.2 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-rootcerts v1.0.2 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -77450,16 +77450,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-sockaddr v1.0.2 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-sockaddr v1.0.2 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -77622,17 +77622,17 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-uuid v1.0.3 - MPL-2.0 - - -Copyright (c) 2015-2022 HashiCorp, Inc. - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-uuid v1.0.3 - MPL-2.0 + + +Copyright (c) 2015-2022 HashiCorp, Inc. + Mozilla Public License Version 2.0 1. Definitions @@ -77795,16 +77795,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-version v1.2.1 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-version v1.2.1 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -77967,16 +77967,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/hcl v1.0.1-vault-5 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/hcl v1.0.1-vault-5 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -78139,16 +78139,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/logutils v1.0.0 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/logutils v1.0.0 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -78311,17 +78311,17 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/memberlist v0.5.0 - MPL-2.0 - - -Copyright 2017 Google Inc. - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/memberlist v0.5.0 - MPL-2.0 + + +Copyright 2017 Google Inc. + Mozilla Public License Version 2.0 1. Definitions @@ -78484,18 +78484,18 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/serf v0.10.1 - MPL-2.0 - - -Copyright Hashicorp 2013 -(c) 2009-2013 Torstein Honsi - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/serf v0.10.1 - MPL-2.0 + + +Copyright Hashicorp 2013 +(c) 2009-2013 Torstein Honsi + Mozilla Public License Version 2.0 1. Definitions @@ -78658,16 +78658,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmitchellh/cli v1.1.5 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmitchellh/cli v1.1.5 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -78830,16 +78830,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fveraison/go-cose v1.0.0 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fveraison/go-cose v1.0.0 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -79002,23 +79002,23 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -argparse 2.0.1 - Python-2.0 -https://github.com/nodeca/argparse#readme - -Copyright (c) 2020 argparse.js authors -Copyright (c) 1999-2001 Gregory P. Ward -Copyright (c) 2010-2020 Python Software Foundation -Copyright (c) 2002, 2003 Python Software Foundation -Copyright (c) 1995-2001 Corporation for National Research Initiatives -Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands -Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Python Software Foundation - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +argparse 2.0.1 - Python-2.0 +https://github.com/nodeca/argparse#readme + +Copyright (c) 2020 argparse.js authors +Copyright (c) 1999-2001 Gregory P. Ward +Copyright (c) 2010-2020 Python Software Foundation +Copyright (c) 2002, 2003 Python Software Foundation +Copyright (c) 1995-2001 Corporation for National Research Initiatives +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands +Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Python Software Foundation + A. HISTORY OF THE SOFTWARE ========================== @@ -79273,16 +79273,16 @@ FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fs-monkey 1.0.5 - Unlicense -https://github.com/streamich/fs-monkey#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fs-monkey 1.0.5 - Unlicense +https://github.com/streamich/fs-monkey#readme + + This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or @@ -79307,16 +79307,16 @@ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. For more information, please refer to - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fnelsam%2Fhel/v2 v2.3.3 - Unlicense - - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fnelsam%2Fhel/v2 v2.3.3 - Unlicense + + + This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. @@ -79327,16 +79327,16 @@ successors. We intend this dedication to be an overt act of relinquishment in pe 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 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. -For more information, please refer to - ---------------------------------------------------------- - ---------------------------------------------------------- - -memfs 3.5.3 - Unlicense -https://github.com/streamich/memfs#readme - - +For more information, please refer to + +--------------------------------------------------------- + +--------------------------------------------------------- + +memfs 3.5.3 - Unlicense +https://github.com/streamich/memfs#readme + + This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or @@ -79361,18 +79361,18 @@ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. For more information, please refer to - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fbugsnag/osext v0.0.0-20130617224835-0dd3f918b21b - Zlib - - -Copyright 2012 The Go Authors -Copyright (c) 2012 Daniel Theophanes - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fbugsnag/osext v0.0.0-20130617224835-0dd3f918b21b - Zlib + + +Copyright 2012 The Go Authors +Copyright (c) 2012 Daniel Theophanes + zlib License Copyright (c) This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. @@ -79383,7 +79383,7 @@ Permission is granted to anyone to use this software for any purpose, including 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - ---------------------------------------------------------- - + 3. This notice may not be removed or altered from any source distribution. + +--------------------------------------------------------- + diff --git a/SUPPORT.md b/SUPPORT.md index 4e1a424853..b7c2dba39e 100644 --- a/SUPPORT.md +++ b/SUPPORT.md @@ -1,9 +1,9 @@ -# Support - -## How to file issues and get help - -This project uses GitHub Issues to track bugs and feature requests. Please search the existing issues before filing new issues to avoid duplicates. For new issues, file your bug or feature request as a new Issue. - -## Microsoft Support Policy - -Support for this project is limited to the resources listed above. +# Support + +## How to file issues and get help + +This project uses GitHub Issues to track bugs and feature requests. Please search the existing issues before filing new issues to avoid duplicates. For new issues, file your bug or feature request as a new Issue. + +## Microsoft Support Policy + +Support for this project is limited to the resources listed above. diff --git a/controller/Dockerfile.windows-2022 b/controller/Dockerfile.windows-2022 index da2d68824c..56a0378ceb 100644 --- a/controller/Dockerfile.windows-2022 +++ b/controller/Dockerfile.windows-2022 @@ -1,6 +1,4 @@ FROM --platform=linux/amd64 mcr.microsoft.com/oss/go/microsoft/golang:1.21 as builder - -# Build args ARG VERSION ARG APP_INSIGHTS_ID @@ -15,7 +13,7 @@ RUN --mount=type=cache,target="/root/.cache/go-build" go build -v -o /usr/bin/co RUN --mount=type=cache,target="/root/.cache/go-build" go build -v -o /usr/bin/captureworkload.exe ./captureworkload/ # Copy into final image -FROM mcr.microsoft.com/windows/servercore:ltsc2022 as final +FROM --platform=windows/amd64 mcr.microsoft.com/windows/servercore:ltsc2022 as final COPY --from=builder /usr/src/retina/windows/kubeconfigtemplate.yaml kubeconfigtemplate.yaml COPY --from=builder /usr/src/retina/windows/setkubeconfigpath.ps1 setkubeconfigpath.ps1 COPY --from=builder /usr/bin/controller.exe controller.exe diff --git a/controller/Dockerfile.windows-native b/controller/Dockerfile.windows-native index d0ce4138f4..b0dab00f1e 100644 --- a/controller/Dockerfile.windows-native +++ b/controller/Dockerfile.windows-native @@ -5,7 +5,6 @@ ARG BUILDER_IMAGE FROM --platform=windows/amd64 ${BUILDER_IMAGE} as builder -# Build args WORKDIR C:\\retina RUN gcc.exe --version RUN go version diff --git a/controller/Dockerfile.windows-native.dockerignore b/controller/Dockerfile.windows-native.dockerignore index 32287a00ac..8a72f6a456 100644 --- a/controller/Dockerfile.windows-native.dockerignore +++ b/controller/Dockerfile.windows-native.dockerignore @@ -1,2 +1,2 @@ -pkg/plugin/windows/pktmon/packetmonitorsupport/* -*.tar +pkg/plugin/windows/pktmon/packetmonitorsupport/* +*.tar diff --git a/pkg/metrics/types.go b/pkg/metrics/types.go index 8fd1eaa5cd..d61235a970 100644 --- a/pkg/metrics/types.go +++ b/pkg/metrics/types.go @@ -109,3 +109,5 @@ func ToPrometheusType(metric interface{}) prometheus.Collector { return nil } } + +type DropReasonType uint32 diff --git a/pkg/metrics/types_linux.go b/pkg/metrics/types_linux.go new file mode 100644 index 0000000000..f0797ac638 --- /dev/null +++ b/pkg/metrics/types_linux.go @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +package metrics + +import "github.com/cilium/cilium/api/v1/flow" + +// Alert: this ordering should match the drop_reason_t enum ordering +// in dropreason.h of DropReason plugin +const ( + IPTABLE_RULE_DROP DropReasonType = iota + IPTABLE_NAT_DROP + TCP_CONNECT_BASIC + TCP_ACCEPT_BASIC + TCP_CLOSE_BASIC + CONNTRACK_ADD_DROP + UNKNOWN_DROP +) + +func GetDropType(value uint32) DropReasonType { + switch value { + case 0: + return IPTABLE_RULE_DROP + case 1: + return IPTABLE_NAT_DROP + case 2: + return TCP_CONNECT_BASIC + case 3: + return TCP_ACCEPT_BASIC + case 4: + return TCP_CLOSE_BASIC + case 5: + return CONNTRACK_ADD_DROP + default: + return UNKNOWN_DROP + } +} + +func GetDropTypeFlowDropReason(dr flow.DropReason) string { + return GetDropType(uint32(dr)).String() +} + +func (d DropReasonType) String() string { + switch d { + case IPTABLE_RULE_DROP: + return "IPTABLE_RULE_DROP" + case IPTABLE_NAT_DROP: + return "IPTABLE_NAT_DROP" + case TCP_CONNECT_BASIC: + return "TCP_CONNECT_BASIC" + case TCP_ACCEPT_BASIC: + return "TCP_ACCEPT_BASIC" + case TCP_CLOSE_BASIC: + return "TCP_CLOSE_BASIC" + case CONNTRACK_ADD_DROP: + return "CONNTRACK_ADD_DROP" + default: + return "UNKNOWN_DROP" + } +} diff --git a/pkg/metrics/types_windows.go b/pkg/metrics/types_windows.go new file mode 100644 index 0000000000..d423dd2ba5 --- /dev/null +++ b/pkg/metrics/types_windows.go @@ -0,0 +1,945 @@ +package metrics + +import ( + "fmt" + + "github.com/cilium/cilium/api/v1/flow" +) + +func GetDropTypeFlowDropReason(dr flow.DropReason) string { + if v, ok := dropReasons[uint32(dr)]; ok { + return v + } + + return fmt.Sprintf("UnknownDropReason(%d)", dr) +} + +func GetDropReason(reason uint32) string { + if v, ok := dropReasons[reason]; ok { + return v + } + + return fmt.Sprintf("UnknownDropReason(%d)", reason) +} + +func (d DropReasonType) String() string { + if v, ok := dropReasons[uint32(d)]; ok { + return v + } + return fmt.Sprintf("UnknownDropReason(%d)", d) +} + +var dropReasons = map[uint32]string{ + 0: "Drop_Unknown", + 1: "Drop_InvalidData", + 2: "Drop_InvalidPacket", + 3: "Drop_Resources", + 4: "Drop_NotReady", + 5: "Drop_Disconnected", + 6: "Drop_NotAccepted", + 7: "Drop_Busy", + 8: "Drop_Filtered", + 9: "Drop_FilteredVLAN", + 10: "Drop_UnauthorizedVLAN", + 11: "Drop_UnauthorizedMAC", + 12: "Drop_FailedSecurityPolicy", + 13: "Drop_FailedPvlanSetting", + 14: "Drop_Qos", + 15: "Drop_Ipsec", + 16: "Drop_MacSpoofing", + 17: "Drop_DhcpGuard", + 18: "Drop_RouterGuard", + 19: "Drop_BridgeReserved", + 20: "Drop_VirtualSubnetId", + 21: "Drop_RequiredExtensionMissing", + 22: "Drop_InvalidConfig", + 23: "Drop_MTUMismatch", + 24: "Drop_NativeFwdingReq", + 25: "Drop_InvalidVlanFormat", + 26: "Drop_InvalidDestMac", + 27: "Drop_InvalidSourceMac", + 28: "Drop_InvalidFirstNBTooSmall", + 29: "Drop_Wnv", + 30: "Drop_StormLimit", + 31: "Drop_InjectedIcmp", + 32: "Drop_FailedDestinationListUpdate", + 33: "Drop_NicDisabled", + 34: "Drop_FailedPacketFilter", + 35: "Drop_SwitchDataFlowDisabled", + 36: "Drop_FilteredIsolationUntagged", + 37: "Drop_InvalidPDQueue", + 38: "Drop_LowPower", + + 201: "Drop_Pause", + 202: "Drop_Reset", + 203: "Drop_SendAborted", + 204: "Drop_ProtocolNotBound", + 205: "Drop_Failure", + 206: "Drop_InvalidLength", + 207: "Drop_HostOutOfMemory", + 208: "Drop_FrameTooLong", + 209: "Drop_FrameTooShort", + 210: "Drop_FrameLengthError", + 211: "Drop_CrcError", + 212: "Drop_BadFrameChecksum", + 213: "Drop_FcsError", + 214: "Drop_SymbolError", + 215: "Drop_HeadQTimeout", + 216: "Drop_StalledDiscard", + 217: "Drop_RxQFull", + 218: "Drop_PhysLayerError", + 219: "Drop_DmaError", + 220: "Drop_FirmwareError", + 221: "Drop_DecryptionFailed", + 222: "Drop_BadSignature", + 223: "Drop_CoalescingError", + 225: "Drop_VlanSpoofing", + 226: "Drop_UnallowedEtherType", + 227: "Drop_VportDown", + 228: "Drop_SteeringMismatch", + 401: "Drop_MicroportError", + 402: "Drop_VfNotReady", + 403: "Drop_MicroportNotReady", + 404: "Drop_VMBusError", + 601: "Drop_FL_LoopbackPacket", + 602: "Drop_FL_InvalidSnapHeader", + 603: "Drop_FL_InvalidEthernetType", + 604: "Drop_FL_InvalidPacketLength", + 605: "Drop_FL_HeaderNotContiguous", + 606: "Drop_FL_InvalidDestinationType", + 607: "Drop_FL_InterfaceNotReady", + 608: "Drop_FL_ProviderNotReady", + 609: "Drop_FL_InvalidLsoInfo", + 610: "Drop_FL_InvalidUsoInfo", + 611: "Drop_FL_InvalidMedium", + 612: "Drop_FL_InvalidArpHeader", + 613: "Drop_FL_NoClientInterface", + 614: "Drop_FL_TooManyNetBuffers", + 615: "Drop_FL_FlsNpiClientDrop", + 701: "Drop_ArpGuard", + 702: "Drop_ArpLimiter", + 703: "Drop_DhcpLimiter", + 704: "Drop_BlockBroadcast", + 705: "Drop_BlockNonIp", + 706: "Drop_ArpFilter", + 707: "Drop_Ipv4Guard", + 708: "Drop_Ipv6Guard", + 709: "Drop_MacGuard", + 710: "Drop_BroadcastNoDestinations", + 711: "Drop_UnicastNoDestination", + 712: "Drop_UnicastPortNotReady", + 713: "Drop_SwitchCallbackFailed", + 714: "Drop_Icmpv6Limiter", + 715: "Drop_Intercept", + 716: "Drop_InterceptBlock", + 717: "Drop_NDPGuard", + 718: "Drop_PortBlocked", + 719: "Drop_NicSuspended", + 901: "Drop_NL_BadSourceAddress", + 902: "Drop_NL_NotLocallyDestined", + 903: "Drop_NL_ProtocolUnreachable", + 904: "Drop_NL_PortUnreachable", + 905: "Drop_NL_BadLength", + 906: "Drop_NL_MalformedHeader", + 907: "Drop_NL_NoRoute", + 908: "Drop_NL_BeyondScope", + 909: "Drop_NL_InspectionDrop", + 910: "Drop_NL_TooManyDecapsulations", + 911: "Drop_NL_AdministrativelyProhibited", + 912: "Drop_NL_BadChecksum", + 913: "Drop_NL_ReceivePathMax", + 914: "Drop_NL_HopLimitExceeded", + 915: "Drop_NL_AddressUnreachable", + 916: "Drop_NL_RscPacket", + 917: "Drop_NL_ForwardPathMax", + 918: "Drop_NL_ArbitrationUnhandled", + 919: "Drop_NL_InspectionAbsorb", + 920: "Drop_NL_DontFragmentMtuExceeded", + 921: "Drop_NL_BufferLengthExceeded", + 922: "Drop_NL_AddressResolutionTimeout", + 923: "Drop_NL_AddressResolutionFailure", + 924: "Drop_NL_IpsecFailure", + 925: "Drop_NL_ExtensionHeadersFailure", + 926: "Drop_NL_IpsnpiClientDrop", + 927: "Drop_NL_UnsupportedOffload", + 928: "Drop_NL_RoutingFailure", + 929: "Drop_NL_AncillaryDataFailure", + 930: "Drop_NL_RawDataFailure", + 931: "Drop_NL_SessionStateFailure", + 932: "Drop_NL_IpsnpiModifiedButNotForwarded", + 933: "Drop_NL_IpsnpiNoNextHop", + 934: "Drop_NL_IpsnpiNoCompartment", + 935: "Drop_NL_IpsnpiNoInterface", + 936: "Drop_NL_IpsnpiNoSubInterface", + 937: "Drop_NL_IpsnpiInterfaceDisabled", + 938: "Drop_NL_IpsnpiSegmentationFailed", + 939: "Drop_NL_IpsnpiNoEthernetHeader", + 940: "Drop_NL_IpsnpiUnexpectedFragment", + 941: "Drop_NL_IpsnpiUnsupportedInterfaceType", + 942: "Drop_NL_IpsnpiInvalidLsoInfo", + 943: "Drop_NL_IpsnpiInvalidUsoInfo", + 944: "Drop_NL_InternalError", + 945: "Drop_NL_AdministrativelyConfigured", + 946: "Drop_NL_BadOption", + 947: "Drop_NL_LoopbackDisallowed", + 948: "Drop_NL_SmallerScope", + 949: "Drop_NL_QueueFull", + 950: "Drop_NL_InterfaceDisabled", + 951: "Drop_NL_IcmpGeneric", + 952: "Drop_NL_IcmpTruncatedHeader", + 953: "Drop_NL_IcmpInvalidChecksum", + 954: "Drop_NL_IcmpInspection", + 955: "Drop_NL_IcmpNeighborDiscoveryLoopback", + 956: "Drop_NL_IcmpUnknownType", + 957: "Drop_NL_IcmpTruncatedIpHeader", + 958: "Drop_NL_IcmpOversizedIpHeader", + 959: "Drop_NL_IcmpNoHandler", + 960: "Drop_NL_IcmpRespondingToError", + 961: "Drop_NL_IcmpInvalidSource", + 962: "Drop_NL_IcmpInterfaceRateLimit", + 963: "Drop_NL_IcmpPathRateLimit", + 964: "Drop_NL_IcmpNoRoute", + 965: "Drop_NL_IcmpMatchingRequestNotFound", + 966: "Drop_NL_IcmpBufferTooSmall", + 967: "Drop_NL_IcmpAncillaryDataQuery", + 968: "Drop_NL_IcmpIncorrectHopLimit", + 969: "Drop_NL_IcmpUnknownCode", + 970: "Drop_NL_IcmpSourceNotLinkLocal", + 971: "Drop_NL_IcmpTruncatedNdHeader", + 972: "Drop_NL_IcmpInvalidNdOptSourceLinkAddr", + 973: "Drop_NL_IcmpInvalidNdOptMtu", + 974: "Drop_NL_IcmpInvalidNdOptPrefixInformation", + 975: "Drop_NL_IcmpInvalidNdOptRouteInformation", + 976: "Drop_NL_IcmpInvalidNdOptRdnss", + 977: "Drop_NL_IcmpInvalidNdOptDnssl", + 978: "Drop_NL_IcmpPacketParsingFailure", + 979: "Drop_NL_IcmpDisallowed", + 980: "Drop_NL_IcmpInvalidRouterAdvertisement", + 981: "Drop_NL_IcmpSourceFromDifferentLink", + 982: "Drop_NL_IcmpInvalidRedirectDestinationOrTarget", + 983: "Drop_NL_IcmpInvalidNdTarget", + 984: "Drop_NL_IcmpNaMulticastAndSolicited", + 985: "Drop_NL_IcmpNdLinkLayerAddressIsLocal", + 986: "Drop_NL_IcmpDuplicateEchoRequest", + 987: "Drop_NL_IcmpNotAPotentialRouter", + 988: "Drop_NL_IcmpInvalidMldQuery", + 989: "Drop_NL_IcmpInvalidMldReport", + 990: "Drop_NL_IcmpLocallySourcedMldReport", + 991: "Drop_NL_IcmpNotLocallyDestined", + 992: "Drop_NL_ArpInvalidSource", + 993: "Drop_NL_ArpInvalidTarget", + 994: "Drop_NL_ArpDlSourceIsLocal", + 995: "Drop_NL_ArpNotLocallyDestined", + 996: "Drop_NL_NlClientDiscard", + 997: "Drop_NL_IpsnpiUroSegmentSizeExceedsMtu", + 998: "Drop_NL_IcmpFragmentedPacket", + 999: "Drop_NL_FirstFragmentIncomplete", + 1000: "Drop_NL_SourceViolation", + 1001: "Drop_NL_IcmpJumbogram", + 1002: "Drop_NL_SwUsoFailure", + 1200: "Drop_INET_SourceUnspecified", + 1201: "Drop_INET_DestinationMulticast", + 1202: "Drop_INET_HeaderInvalid", + 1203: "Drop_INET_ChecksumInvalid", + 1204: "Drop_INET_EndpointNotFound", + 1205: "Drop_INET_ConnectedPath", + 1206: "Drop_INET_SessionState", + 1207: "Drop_INET_ReceiveInspection", + 1208: "Drop_INET_AckInvalid", + 1209: "Drop_INET_ExpectedSyn", + 1210: "Drop_INET_Rst", + 1211: "Drop_INET_SynRcvdSyn", + 1212: "Drop_INET_SimultaneousConnect", + 1213: "Drop_INET_PawsFailed", + 1214: "Drop_INET_LandAttack", + 1215: "Drop_INET_MissedReset", + 1216: "Drop_INET_OutsideWindow", + 1217: "Drop_INET_DuplicateSegment", + 1218: "Drop_INET_ClosedWindow", + 1219: "Drop_INET_TcbRemoved", + 1220: "Drop_INET_FinWait2", + 1221: "Drop_INET_ReassemblyConflict", + 1222: "Drop_INET_FinReceived", + 1223: "Drop_INET_ListenerInvalidFlags", + 1224: "Drop_INET_TcbNotInTcbTable", + 1225: "Drop_INET_TimeWaitTcbReceivedRstOutsideWindow", + 1226: "Drop_INET_TimeWaitTcbSynAndOtherFlags", + 1227: "Drop_INET_TimeWaitTcb", + 1228: "Drop_INET_SynAckWithFastopenCookieRequest", + 1229: "Drop_INET_PauseAccept", + 1230: "Drop_INET_SynAttack", + 1231: "Drop_INET_AcceptInspection", + 1232: "Drop_INET_AcceptRedirection", + + // + // Slbmux Error + // + 1301: "Drop_SlbMux_ParsingFailure", + 1302: "Drop_SlbMux_FirstFragmentMiss", + 1303: "Drop_SlbMux_ICMPErrorPayloadValidationFailure", + 1304: "Drop_SlbMux_ICMPErrorPacketMatchNoSession", + 1305: "Drop_SlbMux_ExternalHairpinNexthopLookupFailure", + 1306: "Drop_SlbMux_NoMatchingStaticMapping", + 1307: "Drop_SlbMux_NexthopReferenceFailure", + 1308: "Drop_SlbMux_CloningFailure", + 1309: "Drop_SlbMux_TranslationFailure", + 1310: "Drop_SlbMux_HopLimitExceeded", + 1311: "Drop_SlbMux_PacketBiggerThanMTU", + 1312: "Drop_SlbMux_UnexpectedRouteLookupFailure", + 1313: "Drop_SlbMux_NoRoute", + 1314: "Drop_SlbMux_SessionCreationFailure", + 1315: "Drop_SlbMux_NexthopNotOverExternalInterface", + 1316: "Drop_SlbMux_NexthopExternalInterfaceMissNATInstance", + 1317: "Drop_SlbMux_NATItselfCantBeInternalNexthop", + 1318: "Drop_SlbMux_PacketRoutableInItsArrivalCompartment", + 1319: "Drop_SlbMux_PacketTransportProtocolNotSupported", + 1320: "Drop_SlbMux_PacketIsDestinedLocally", + 1321: "Drop_SlbMux_PacketDestinationIPandPortNotSubjectToNAT", + 1322: "Drop_SlbMux_MuxReject", + 1323: "Drop_SlbMux_DipLookupFailure", + 1324: "Drop_SlbMux_MuxEncapsulationFailure", + 1325: "Drop_SlbMux_InvalidDiagPacketEncapType", + 1326: "Drop_SlbMux_DiagPacketIsRedirect", + 1327: "Drop_SlbMux_UnableToHandleRedirect", + + // + // Ipsec Errors + // + 1401: "Drop_Ipsec_BadSpi", + 1402: "Drop_Ipsec_SALifetimeExpired", + 1403: "Drop_Ipsec_WrongSA", + 1404: "Drop_Ipsec_ReplayCheckFailed", + 1405: "Drop_Ipsec_InvalidPacket", + 1406: "Drop_Ipsec_IntegrityCheckFailed", + 1407: "Drop_Ipsec_ClearTextDrop", + 1408: "Drop_Ipsec_AuthFirewallDrop", + 1409: "Drop_Ipsec_ThrottleDrop", + 1410: "Drop_Ipsec_Dosp_Block", + 1411: "Drop_Ipsec_Dosp_ReceivedMulticast", + 1412: "Drop_Ipsec_Dosp_InvalidPacket", + 1413: "Drop_Ipsec_Dosp_StateLookupFailed", + 1414: "Drop_Ipsec_Dosp_MaxEntries", + 1415: "Drop_Ipsec_Dosp_KeymodNotAllowed", + 1416: "Drop_Ipsec_Dosp_MaxPerIpRateLimitQueues", + 1417: "Drop_Ipsec_NoMemory", + 1418: "Drop_Ipsec_Unsuccessful", + + // + // NetCx Drop Reasons + // + 1501: "Drop_NetCx_NetPacketLayoutParseFailure", + 1502: "Drop_NetCx_SoftwareChecksumFailure", + 1503: "Drop_NetCx_NicQueueStop", + 1504: "Drop_NetCx_InvalidNetBufferLength", + 1505: "Drop_NetCx_LSOFailure", + 1506: "Drop_NetCx_USOFailure", + 1507: "Drop_NetCx_BufferBounceFailureAndPacketIgnore", + + // + // Http errors 3000 - 4000. + // These must be in sync with cmd\resource.h + // + 3000: "Drop_Http_InvalidPacket", + + // + // UlErrors + // + 3001: "Drop_Http_UlError_Begin", + 3002: "Drop_Http_UlError", + 3003: "Drop_Http_UlErrorVerb", + 3004: "Drop_Http_UlErrorUrl", + 3005: "Drop_Http_UlErrorHeader", + 3006: "Drop_Http_UlErrorHost", + 3007: "Drop_Http_UlErrorNum", + 3008: "Drop_Http_UlErrorFieldLength", + 3009: "Drop_Http_UlErrorRequestLength", + 3010: "Drop_Http_UlErrorUnauthorized", + 3011: "Drop_Http_UlErrorForbiddenUrl", + 3012: "Drop_Http_UlErrorNotFound", + 3013: "Drop_Http_UlErrorContentLength", + 3014: "Drop_Http_UlErrorPreconditionFailed", + 3015: "Drop_Http_UlErrorEntityTooLarge", + 3016: "Drop_Http_UlErrorUrlLength", + 3017: "Drop_Http_UlErrorRangeNotSatisfiable", + 3018: "Drop_Http_UlErrorMisdirectedRequest", + 3019: "Drop_Http_UlErrorInternalServer", + 3020: "Drop_Http_UlErrorNotImplemented", + 3021: "Drop_Http_UlErrorUnavailable", + 3022: "Drop_Http_UlErrorConnectionLimit", + 3023: "Drop_Http_UlErrorRapidFailProtection", + 3024: "Drop_Http_UlErrorRequestQueueFull", + 3025: "Drop_Http_UlErrorDisabledByAdmin", + 3026: "Drop_Http_UlErrorDisabledByApp", + 3027: "Drop_Http_UlErrorJobObjectFired", + 3028: "Drop_Http_UlErrorAppPoolBusy", + 3029: "Drop_Http_UlErrorVersion", + 3030: "Drop_Http_UlError_End", + + // + // Stream-specific fault codes. + // + 3400: "Drop_Http_UxDuoFaultBegin", + 3401: "Drop_Http_UxDuoFaultUserAbort", + 3402: "Drop_Http_UxDuoFaultCollection", + 3403: "Drop_Http_UxDuoFaultClientResetStream", + 3404: "Drop_Http_UxDuoFaultMethodNotFound", + 3405: "Drop_Http_UxDuoFaultSchemeMismatch", + 3406: "Drop_Http_UxDuoFaultSchemeNotFound", + 3407: "Drop_Http_UxDuoFaultDataAfterEnd", + 3408: "Drop_Http_UxDuoFaultPathNotFound", + 3409: "Drop_Http_UxDuoFaultHalfClosedLocal", + 3410: "Drop_Http_UxDuoFaultIncompatibleAuth", + 3411: "Drop_Http_UxDuoFaultDeprecated3", + 3412: "Drop_Http_UxDuoFaultClientCertBlocked", + 3413: "Drop_Http_UxDuoFaultHeaderNameEmpty", + 3414: "Drop_Http_UxDuoFaultIllegalSend", + 3415: "Drop_Http_UxDuoFaultPushUpperAttach", + 3416: "Drop_Http_UxDuoFaultStreamUpperAttach", + 3417: "Drop_Http_UxDuoFaultActiveStreamLimit", + 3418: "Drop_Http_UxDuoFaultAuthorityNotFound", + 3419: "Drop_Http_UxDuoFaultUnexpectedTail", + 3420: "Drop_Http_UxDuoFaultTruncated", + 3421: "Drop_Http_UxDuoFaultResponseHold", + 3422: "Drop_Http_UxDuoFaultRequestChunked", + 3423: "Drop_Http_UxDuoFaultRequestContentLength", + 3424: "Drop_Http_UxDuoFaultResponseChunked", + 3425: "Drop_Http_UxDuoFaultResponseContentLength", + 3426: "Drop_Http_UxDuoFaultResponseTransferEncoding", + 3427: "Drop_Http_UxDuoFaultResponseLine", + 3428: "Drop_Http_UxDuoFaultResponseHeader", + 3429: "Drop_Http_UxDuoFaultConnect", + 3430: "Drop_Http_UxDuoFaultChunkStart", + 3431: "Drop_Http_UxDuoFaultChunkLength", + 3432: "Drop_Http_UxDuoFaultChunkStop", + 3433: "Drop_Http_UxDuoFaultHeadersAfterTrailers", + 3434: "Drop_Http_UxDuoFaultHeadersAfterEnd", + 3435: "Drop_Http_UxDuoFaultEndlessTrailer", + 3436: "Drop_Http_UxDuoFaultTransferEncoding", + 3437: "Drop_Http_UxDuoFaultMultipleTransferCodings", + 3438: "Drop_Http_UxDuoFaultPushBody", + 3439: "Drop_Http_UxDuoFaultStreamAbandoned", + 3440: "Drop_Http_UxDuoFaultMalformedHost", + 3441: "Drop_Http_UxDuoFaultDecompressionOverflow", + 3442: "Drop_Http_UxDuoFaultIllegalHeaderName", + 3443: "Drop_Http_UxDuoFaultIllegalHeaderValue", + 3444: "Drop_Http_UxDuoFaultConnHeaderDisallowed", + 3445: "Drop_Http_UxDuoFaultConnHeaderMalformed", + 3446: "Drop_Http_UxDuoFaultCookieReassembly", + 3447: "Drop_Http_UxDuoFaultStatusHeader", + 3448: "Drop_Http_UxDuoFaultSchemeDisallowed", + 3449: "Drop_Http_UxDuoFaultPathDisallowed", + 3450: "Drop_Http_UxDuoFaultPushHost", + 3451: "Drop_Http_UxDuoFaultGoawayReceived", + 3452: "Drop_Http_UxDuoFaultAbortLegacyApp", + 3453: "Drop_Http_UxDuoFaultUpgradeHeaderDisallowed", + 3454: "Drop_Http_UxDuoFaultResponseUpgradeHeader", + 3455: "Drop_Http_UxDuoFaultKeepAliveHeaderDisallowed", + 3456: "Drop_Http_UxDuoFaultResponseKeepAliveHeader", + 3457: "Drop_Http_UxDuoFaultProxyConnHeaderDisallowed", + 3458: "Drop_Http_UxDuoFaultResponseProxyConnHeader", + 3459: "Drop_Http_UxDuoFaultConnectionGoingAway", + 3460: "Drop_Http_UxDuoFaultTransferEncodingDisallowed", + 3461: "Drop_Http_UxDuoFaultContentLengthDisallowed", + 3462: "Drop_Http_UxDuoFaultTrailerDisallowed", + 3463: "Drop_Http_UxDuoFaultEnd", + + // + // WSK layer drops + // + 3600: "Drop_Http_ReceiveSuppressed", + + // + // Http/SSL layer drops + // + 3800: "Drop_Http_Generic", + 3801: "Drop_Http_InvalidParameter", + 3802: "Drop_Http_InsufficientResources", + 3803: "Drop_Http_InvalidHandle", + 3804: "Drop_Http_NotSupported", + 3805: "Drop_Http_BadNetworkPath", + 3806: "Drop_Http_InternalError", + 3807: "Drop_Http_NoSuchPackage", + 3808: "Drop_Http_PrivilegeNotHeld", + 3809: "Drop_Http_CannotImpersonate", + 3810: "Drop_Http_LogonFailure", + 3811: "Drop_Http_NoSuchLogonSession", + 3812: "Drop_Http_AccessDenied", + 3813: "Drop_Http_NoLogonServers", + 3814: "Drop_Http_TimeDifferenceAtDc", + 4000: "Drop_Http_End", +} + +// Pretty redundant from the map above, but linux is using this DropReasonType so need to +// converge on something, having an enum with string type name and uint32 type +const ( + Drop_Unknown DropReasonType = 0 + Drop_InvalidData DropReasonType = 1 + Drop_InvalidPacket DropReasonType = 2 + Drop_Resources DropReasonType = 3 + Drop_NotReady DropReasonType = 4 + Drop_Disconnected DropReasonType = 5 + Drop_NotAccepted DropReasonType = 6 + Drop_Busy DropReasonType = 7 + Drop_Filtered DropReasonType = 8 + Drop_FilteredVLAN DropReasonType = 9 + Drop_UnauthorizedVLAN DropReasonType = 10 + Drop_UnauthorizedMAC DropReasonType = 11 + Drop_FailedSecurityPolicy DropReasonType = 12 + Drop_FailedPvlanSetting DropReasonType = 13 + Drop_Qos DropReasonType = 14 + Drop_Ipsec DropReasonType = 15 + Drop_MacSpoofing DropReasonType = 16 + Drop_DhcpGuard DropReasonType = 17 + Drop_RouterGuard DropReasonType = 18 + Drop_BridgeReserved DropReasonType = 19 + Drop_VirtualSubnetId DropReasonType = 20 + Drop_RequiredExtensionMissing DropReasonType = 21 + Drop_InvalidConfig DropReasonType = 22 + Drop_MTUMismatch DropReasonType = 23 + Drop_NativeFwdingReq DropReasonType = 24 + Drop_InvalidVlanFormat DropReasonType = 25 + Drop_InvalidDestMac DropReasonType = 26 + Drop_InvalidSourceMac DropReasonType = 27 + Drop_InvalidFirstNBTooSmall DropReasonType = 28 + Drop_Wnv DropReasonType = 29 + Drop_StormLimit DropReasonType = 30 + Drop_InjectedIcmp DropReasonType = 31 + Drop_FailedDestinationListUpdate DropReasonType = 32 + Drop_NicDisabled DropReasonType = 33 + Drop_FailedPacketFilter DropReasonType = 34 + Drop_SwitchDataFlowDisabled DropReasonType = 35 + Drop_FilteredIsolationUntagged DropReasonType = 36 + Drop_InvalidPDQueue DropReasonType = 37 + Drop_LowPower DropReasonType = 38 + + // + // General errors + // + Drop_Pause DropReasonType = 201 + Drop_Reset DropReasonType = 202 + Drop_SendAborted DropReasonType = 203 + Drop_ProtocolNotBound DropReasonType = 204 + Drop_Failure DropReasonType = 205 + Drop_InvalidLength DropReasonType = 206 + Drop_HostOutOfMemory DropReasonType = 207 + Drop_FrameTooLong DropReasonType = 208 + Drop_FrameTooShort DropReasonType = 209 + Drop_FrameLengthError DropReasonType = 210 + Drop_CrcError DropReasonType = 211 + Drop_BadFrameChecksum DropReasonType = 212 + Drop_FcsError DropReasonType = 213 + Drop_SymbolError DropReasonType = 214 + Drop_HeadQTimeout DropReasonType = 215 + Drop_StalledDiscard DropReasonType = 216 + Drop_RxQFull DropReasonType = 217 + Drop_PhysLayerError DropReasonType = 218 + Drop_DmaError DropReasonType = 219 + Drop_FirmwareError DropReasonType = 220 + Drop_DecryptionFailed DropReasonType = 221 + Drop_BadSignature DropReasonType = 222 + Drop_CoalescingError DropReasonType = 223 + Drop_VlanSpoofing DropReasonType = 225 + Drop_UnallowedEtherType DropReasonType = 226 + Drop_VportDown DropReasonType = 227 + Drop_SteeringMismatch DropReasonType = 228 + + // + // NetVsc errors + // + Drop_MicroportError DropReasonType = 401 + Drop_VfNotReady DropReasonType = 402 + Drop_MicroportNotReady DropReasonType = 403 + Drop_VMBusError DropReasonType = 404 + + // + // Tcpip FL errors + // + Drop_FL_LoopbackPacket DropReasonType = 601 + Drop_FL_InvalidSnapHeader DropReasonType = 602 + Drop_FL_InvalidEthernetType DropReasonType = 603 + Drop_FL_InvalidPacketLength DropReasonType = 604 + Drop_FL_HeaderNotContiguous DropReasonType = 605 + Drop_FL_InvalidDestinationType DropReasonType = 606 + Drop_FL_InterfaceNotReady DropReasonType = 607 + Drop_FL_ProviderNotReady DropReasonType = 608 + Drop_FL_InvalidLsoInfo DropReasonType = 609 + Drop_FL_InvalidUsoInfo DropReasonType = 610 + Drop_FL_InvalidMedium DropReasonType = 611 + Drop_FL_InvalidArpHeader DropReasonType = 612 + Drop_FL_NoClientInterface DropReasonType = 613 + Drop_FL_TooManyNetBuffers DropReasonType = 614 + Drop_FL_FlsNpiClientDrop DropReasonType = 615 + + // + // VFP errors + // + Drop_ArpGuard DropReasonType = 701 + Drop_ArpLimiter DropReasonType = 702 + Drop_DhcpLimiter DropReasonType = 703 + Drop_BlockBroadcast DropReasonType = 704 + Drop_BlockNonIp DropReasonType = 705 + Drop_ArpFilter DropReasonType = 706 + Drop_Ipv4Guard DropReasonType = 707 + Drop_Ipv6Guard DropReasonType = 708 + Drop_MacGuard DropReasonType = 709 + Drop_BroadcastNoDestinations DropReasonType = 710 + Drop_UnicastNoDestination DropReasonType = 711 + Drop_UnicastPortNotReady DropReasonType = 712 + Drop_SwitchCallbackFailed DropReasonType = 713 + Drop_Icmpv6Limiter DropReasonType = 714 + Drop_Intercept DropReasonType = 715 + Drop_InterceptBlock DropReasonType = 716 + Drop_NDPGuard DropReasonType = 717 + Drop_PortBlocked DropReasonType = 718 + Drop_NicSuspended DropReasonType = 719 + + // + // Tcpip NL errors + // + Drop_NL_BadSourceAddress DropReasonType = 901 + Drop_NL_NotLocallyDestined DropReasonType = 902 + Drop_NL_ProtocolUnreachable DropReasonType = 903 + Drop_NL_PortUnreachable DropReasonType = 904 + Drop_NL_BadLength DropReasonType = 905 + Drop_NL_MalformedHeader DropReasonType = 906 + Drop_NL_NoRoute DropReasonType = 907 + Drop_NL_BeyondScope DropReasonType = 908 + Drop_NL_InspectionDrop DropReasonType = 909 + Drop_NL_TooManyDecapsulations DropReasonType = 910 + Drop_NL_AdministrativelyProhibited DropReasonType = 911 + Drop_NL_BadChecksum DropReasonType = 912 + Drop_NL_ReceivePathMax DropReasonType = 913 + Drop_NL_HopLimitExceeded DropReasonType = 914 + Drop_NL_AddressUnreachable DropReasonType = 915 + Drop_NL_RscPacket DropReasonType = 916 + Drop_NL_ForwardPathMax DropReasonType = 917 + Drop_NL_ArbitrationUnhandled DropReasonType = 918 + Drop_NL_InspectionAbsorb DropReasonType = 919 + Drop_NL_DontFragmentMtuExceeded DropReasonType = 920 + Drop_NL_BufferLengthExceeded DropReasonType = 921 + Drop_NL_AddressResolutionTimeout DropReasonType = 922 + Drop_NL_AddressResolutionFailure DropReasonType = 923 + Drop_NL_IpsecFailure DropReasonType = 924 + Drop_NL_ExtensionHeadersFailure DropReasonType = 925 + Drop_NL_IpsnpiClientDrop DropReasonType = 926 + Drop_NL_UnsupportedOffload DropReasonType = 927 + Drop_NL_RoutingFailure DropReasonType = 928 + Drop_NL_AncillaryDataFailure DropReasonType = 929 + Drop_NL_RawDataFailure DropReasonType = 930 + Drop_NL_SessionStateFailure DropReasonType = 931 + Drop_NL_IpsnpiModifiedButNotForwardedDropReasonType DropReasonType = 932 + Drop_NL_IpsnpiNoNextHop DropReasonType = 933 + Drop_NL_IpsnpiNoCompartment DropReasonType = 934 + Drop_NL_IpsnpiNoInterface DropReasonType = 935 + Drop_NL_IpsnpiNoSubInterface DropReasonType = 936 + Drop_NL_IpsnpiInterfaceDisabled DropReasonType = 937 + Drop_NL_IpsnpiSegmentationFailed DropReasonType = 938 + Drop_NL_IpsnpiNoEthernetHeader DropReasonType = 939 + Drop_NL_IpsnpiUnexpectedFragment DropReasonType = 940 + Drop_NL_IpsnpiUnsupportedInterfaceType DropReasonType = 941 + Drop_NL_IpsnpiInvalidLsoInfo DropReasonType = 942 + Drop_NL_IpsnpiInvalidUsoInfo DropReasonType = 943 + Drop_NL_InternalError DropReasonType = 944 + Drop_NL_AdministrativelyConfigured DropReasonType = 945 + Drop_NL_BadOption DropReasonType = 946 + Drop_NL_LoopbackDisallowed DropReasonType = 947 + Drop_NL_SmallerScope DropReasonType = 948 + Drop_NL_QueueFull DropReasonType = 949 + Drop_NL_InterfaceDisabled DropReasonType = 950 + + Drop_NL_IcmpGeneric DropReasonType = 951 + Drop_NL_IcmpTruncatedHeader DropReasonType = 952 + Drop_NL_IcmpInvalidChecksum DropReasonType = 953 + Drop_NL_IcmpInspection DropReasonType = 954 + Drop_NL_IcmpNeighborDiscoveryLoopback DropReasonType = 955 + Drop_NL_IcmpUnknownType DropReasonType = 956 + Drop_NL_IcmpTruncatedIpHeader DropReasonType = 957 + Drop_NL_IcmpOversizedIpHeader DropReasonType = 958 + Drop_NL_IcmpNoHandler DropReasonType = 959 + Drop_NL_IcmpRespondingToError DropReasonType = 960 + Drop_NL_IcmpInvalidSource DropReasonType = 961 + Drop_NL_IcmpInterfaceRateLimit DropReasonType = 962 + Drop_NL_IcmpPathRateLimit DropReasonType = 963 + Drop_NL_IcmpNoRoute DropReasonType = 964 + Drop_NL_IcmpMatchingRequestNotFound DropReasonType = 965 + Drop_NL_IcmpBufferTooSmall DropReasonType = 966 + Drop_NL_IcmpAncillaryDataQuery DropReasonType = 967 + Drop_NL_IcmpIncorrectHopLimit DropReasonType = 968 + Drop_NL_IcmpUnknownCode DropReasonType = 969 + Drop_NL_IcmpSourceNotLinkLocal DropReasonType = 970 + Drop_NL_IcmpTruncatedNdHeader DropReasonType = 971 + Drop_NL_IcmpInvalidNdOptSourceLinkAddr DropReasonType = 972 + Drop_NL_IcmpInvalidNdOptMtu DropReasonType = 973 + Drop_NL_IcmpInvalidNdOptPrefixInformation DropReasonType = 974 + Drop_NL_IcmpInvalidNdOptRouteInformation DropReasonType = 975 + Drop_NL_IcmpInvalidNdOptRdnss DropReasonType = 976 + Drop_NL_IcmpInvalidNdOptDnssl DropReasonType = 977 + Drop_NL_IcmpPacketParsingFailure DropReasonType = 978 + Drop_NL_IcmpDisallowed DropReasonType = 979 + Drop_NL_IcmpInvalidRouterAdvertisement DropReasonType = 980 + Drop_NL_IcmpSourceFromDifferentLink DropReasonType = 981 + Drop_NL_IcmpInvalidRedirectDestinationOrTarget DropReasonType = 982 + Drop_NL_IcmpInvalidNdTarget DropReasonType = 983 + Drop_NL_IcmpNaMulticastAndSolicited DropReasonType = 984 + Drop_NL_IcmpNdLinkLayerAddressIsLocal DropReasonType = 985 + Drop_NL_IcmpDuplicateEchoRequest DropReasonType = 986 + Drop_NL_IcmpNotAPotentialRouter DropReasonType = 987 + Drop_NL_IcmpInvalidMldQuery DropReasonType = 988 + Drop_NL_IcmpInvalidMldReport DropReasonType = 989 + Drop_NL_IcmpLocallySourcedMldReport DropReasonType = 990 + Drop_NL_IcmpNotLocallyDestined DropReasonType = 991 + + Drop_NL_ArpInvalidSource DropReasonType = 992 + Drop_NL_ArpInvalidTarget DropReasonType = 993 + Drop_NL_ArpDlSourceIsLocal DropReasonType = 994 + Drop_NL_ArpNotLocallyDestined DropReasonType = 995 + + Drop_NL_NlClientDiscard = 996 + + Drop_NL_IpsnpiUroSegmentSizeExceedsMtu = 997 + + Drop_NL_IcmpFragmentedPacket DropReasonType = 998 + Drop_NL_FirstFragmentIncomplete DropReasonType = 999 + Drop_NL_SourceViolation DropReasonType = 1000 + Drop_NL_IcmpJumbogram DropReasonType = 1001 + Drop_NL_SwUsoFailure DropReasonType = 1002 + + // + // INET discard reasons + // + Drop_INET_SourceUnspecified DropReasonType = 1200 + Drop_INET_DestinationMulticast DropReasonType = 1201 + Drop_INET_HeaderInvalid DropReasonType = 1202 + Drop_INET_ChecksumInvalid DropReasonType = 1203 + Drop_INET_EndpointNotFound DropReasonType = 1204 + Drop_INET_ConnectedPath DropReasonType = 1205 + Drop_INET_SessionState DropReasonType = 1206 + Drop_INET_ReceiveInspection DropReasonType = 1207 + Drop_INET_AckInvalid DropReasonType = 1208 + Drop_INET_ExpectedSyn DropReasonType = 1209 + Drop_INET_Rst DropReasonType = 1210 + Drop_INET_SynRcvdSyn DropReasonType = 1211 + Drop_INET_SimultaneousConnect DropReasonType = 1212 + Drop_INET_PawsFailed DropReasonType = 1213 + Drop_INET_LandAttack DropReasonType = 1214 + Drop_INET_MissedReset DropReasonType = 1215 + Drop_INET_OutsideWindow DropReasonType = 1216 + Drop_INET_DuplicateSegment DropReasonType = 1217 + Drop_INET_ClosedWindow DropReasonType = 1218 + Drop_INET_TcbRemoved DropReasonType = 1219 + Drop_INET_FinWait2 DropReasonType = 1220 + Drop_INET_ReassemblyConflict DropReasonType = 1221 + Drop_INET_FinReceived DropReasonType = 1222 + Drop_INET_ListenerInvalidFlags DropReasonType = 1223 + Drop_INET_TcbNotInTcbTable DropReasonType = 1224 + Drop_INET_TimeWaitTcbReceivedRstOutsideWindow DropReasonType = 1225 + Drop_INET_TimeWaitTcbSynAndOtherFlags DropReasonType = 1226 + Drop_INET_TimeWaitTcb DropReasonType = 1227 + Drop_INET_SynAckWithFastopenCookieRequest DropReasonType = 1228 + Drop_INET_PauseAccept DropReasonType = 1229 + Drop_INET_SynAttack DropReasonType = 1230 + Drop_INET_AcceptInspection DropReasonType = 1231 + Drop_INET_AcceptRedirection DropReasonType = 1232 + + // + // Slbmux Error + // + Drop_SlbMux_ParsingFailure DropReasonType = 1301 + Drop_SlbMux_FirstFragmentMiss DropReasonType = 1302 + Drop_SlbMux_ICMPErrorPayloadValidationFailure DropReasonType = 1303 + Drop_SlbMux_ICMPErrorPacketMatchNoSession DropReasonType = 1304 + Drop_SlbMux_ExternalHairpinNexthopLookupFailure DropReasonType = 1305 + Drop_SlbMux_NoMatchingStaticMapping DropReasonType = 1306 + Drop_SlbMux_NexthopReferenceFailure DropReasonType = 1307 + Drop_SlbMux_CloningFailure DropReasonType = 1308 + Drop_SlbMux_TranslationFailure DropReasonType = 1309 + Drop_SlbMux_HopLimitExceeded DropReasonType = 1310 + Drop_SlbMux_PacketBiggerThanMTU DropReasonType = 1311 + Drop_SlbMux_UnexpectedRouteLookupFailure DropReasonType = 1312 + Drop_SlbMux_NoRoute DropReasonType = 1313 + Drop_SlbMux_SessionCreationFailure DropReasonType = 1314 + Drop_SlbMux_NexthopNotOverExternalInterface DropReasonType = 1315 + Drop_SlbMux_NexthopExternalInterfaceMissNATInstance DropReasonType = 1316 + Drop_SlbMux_NATItselfCantBeInternalNexthop DropReasonType = 1317 + Drop_SlbMux_PacketRoutableInItsArrivalCompartment DropReasonType = 1318 + Drop_SlbMux_PacketTransportProtocolNotSupported DropReasonType = 1319 + Drop_SlbMux_PacketIsDestinedLocally DropReasonType = 1320 + Drop_SlbMux_PacketDestinationIPandPortNotSubjectToNAT DropReasonType = 1321 + Drop_SlbMux_MuxReject DropReasonType = 1322 + Drop_SlbMux_DipLookupFailure DropReasonType = 1323 + Drop_SlbMux_MuxEncapsulationFailure DropReasonType = 1324 + Drop_SlbMux_InvalidDiagPacketEncapType DropReasonType = 1325 + Drop_SlbMux_DiagPacketIsRedirect DropReasonType = 1326 + Drop_SlbMux_UnableToHandleRedirect DropReasonType = 1327 + + // + // Ipsec Errors + // + Drop_Ipsec_BadSpi DropReasonType = 1401 + Drop_Ipsec_SALifetimeExpired DropReasonType = 1402 + Drop_Ipsec_WrongSA DropReasonType = 1403 + Drop_Ipsec_ReplayCheckFailed DropReasonType = 1404 + Drop_Ipsec_InvalidPacket DropReasonType = 1405 + Drop_Ipsec_IntegrityCheckFailed DropReasonType = 1406 + Drop_Ipsec_ClearTextDrop DropReasonType = 1407 + Drop_Ipsec_AuthFirewallDrop DropReasonType = 1408 + Drop_Ipsec_ThrottleDrop DropReasonType = 1409 + Drop_Ipsec_Dosp_Block DropReasonType = 1410 + Drop_Ipsec_Dosp_ReceivedMulticast DropReasonType = 1411 + Drop_Ipsec_Dosp_InvalidPacket DropReasonType = 1412 + Drop_Ipsec_Dosp_StateLookupFailed DropReasonType = 1413 + Drop_Ipsec_Dosp_MaxEntries DropReasonType = 1414 + Drop_Ipsec_Dosp_KeymodNotAllowed DropReasonType = 1415 + Drop_Ipsec_Dosp_MaxPerIpRateLimitQueues DropReasonType = 1416 + Drop_Ipsec_NoMemory DropReasonType = 1417 + Drop_Ipsec_Unsuccessful DropReasonType = 1418 + + // + // NetCx Drop Reasons + // + Drop_NetCx_NetPacketLayoutParseFailure DropReasonType = 1501 + Drop_NetCx_SoftwareChecksumFailure DropReasonType = 1502 + Drop_NetCx_NicQueueStop DropReasonType = 1503 + Drop_NetCx_InvalidNetBufferLength DropReasonType = 1504 + Drop_NetCx_LSOFailure DropReasonType = 1505 + Drop_NetCx_USOFailure DropReasonType = 1506 + Drop_NetCx_BufferBounceFailureAndPacketIgnore DropReasonType = 1507 + + // + // Http errors 3000 - 4000. + // These must be in sync with cmd\resource.h + // + Drop_Http_Begin = 3000 + + // + // UlErrors + // + Drop_Http_UlError_Begin DropReasonType = 3001 + Drop_Http_UlError DropReasonType = 3002 + Drop_Http_UlErrorVerb DropReasonType = 3003 + Drop_Http_UlErrorUrl DropReasonType = 3004 + Drop_Http_UlErrorHeader DropReasonType = 3005 + Drop_Http_UlErrorHost DropReasonType = 3006 + Drop_Http_UlErrorNum DropReasonType = 3007 + Drop_Http_UlErrorFieldLength DropReasonType = 3008 + Drop_Http_UlErrorRequestLength DropReasonType = 3009 + Drop_Http_UlErrorUnauthorizedDropReasonType DropReasonType = 3010 + + Drop_Http_UlErrorForbiddenUrl DropReasonType = 3011 + Drop_Http_UlErrorNotFound DropReasonType = 3012 + Drop_Http_UlErrorContentLength DropReasonType = 3013 + Drop_Http_UlErrorPreconditionFailedDropReasonType DropReasonType = 3014 + Drop_Http_UlErrorEntityTooLarge DropReasonType = 3015 + Drop_Http_UlErrorUrlLength DropReasonType = 3016 + Drop_Http_UlErrorRangeNotSatisfiable DropReasonType = 3017 + Drop_Http_UlErrorMisdirectedRequestDropReasonType DropReasonType = 3018 + + Drop_Http_UlErrorInternalServer DropReasonType = 3019 + Drop_Http_UlErrorNotImplemented DropReasonType = 3020 + Drop_Http_UlErrorUnavailable DropReasonType = 3021 + Drop_Http_UlErrorConnectionLimit DropReasonType = 3022 + Drop_Http_UlErrorRapidFailProtection DropReasonType = 3023 + Drop_Http_UlErrorRequestQueueFull DropReasonType = 3024 + Drop_Http_UlErrorDisabledByAdmin DropReasonType = 3025 + Drop_Http_UlErrorDisabledByApp DropReasonType = 3026 + Drop_Http_UlErrorJobObjectFired DropReasonType = 3027 + Drop_Http_UlErrorAppPoolBusy DropReasonType = 3028 + + Drop_Http_UlErrorVersion DropReasonType = 3029 + Drop_Http_UlError_End DropReasonType = 3030 + + // + // Stream-specific fault codes. + // + + Drop_Http_UxDuoFaultBegin DropReasonType = 3400 + Drop_Http_UxDuoFaultUserAbort DropReasonType = 3401 + Drop_Http_UxDuoFaultCollection DropReasonType = 3402 + Drop_Http_UxDuoFaultClientResetStream DropReasonType = 3403 + Drop_Http_UxDuoFaultMethodNotFound DropReasonType = 3404 + Drop_Http_UxDuoFaultSchemeMismatch DropReasonType = 3405 + Drop_Http_UxDuoFaultSchemeNotFound DropReasonType = 3406 + Drop_Http_UxDuoFaultDataAfterEnd DropReasonType = 3407 + Drop_Http_UxDuoFaultPathNotFound DropReasonType = 3408 + Drop_Http_UxDuoFaultHalfClosedLocal DropReasonType = 3409 + Drop_Http_UxDuoFaultIncompatibleAuth DropReasonType = 3410 + Drop_Http_UxDuoFaultDeprecated3 DropReasonType = 3411 + Drop_Http_UxDuoFaultClientCertBlocked DropReasonType = 3412 + Drop_Http_UxDuoFaultHeaderNameEmpty DropReasonType = 3413 + Drop_Http_UxDuoFaultIllegalSend DropReasonType = 3414 + Drop_Http_UxDuoFaultPushUpperAttach DropReasonType = 3415 + Drop_Http_UxDuoFaultStreamUpperAttach DropReasonType = 3416 + Drop_Http_UxDuoFaultActiveStreamLimit DropReasonType = 3417 + Drop_Http_UxDuoFaultAuthorityNotFound DropReasonType = 3418 + Drop_Http_UxDuoFaultUnexpectedTail DropReasonType = 3419 + Drop_Http_UxDuoFaultTruncated DropReasonType = 3420 + Drop_Http_UxDuoFaultResponseHold DropReasonType = 3421 + Drop_Http_UxDuoFaultRequestChunked DropReasonType = 3422 + Drop_Http_UxDuoFaultRequestContentLength DropReasonType = 3423 + Drop_Http_UxDuoFaultResponseChunked DropReasonType = 3424 + Drop_Http_UxDuoFaultResponseContentLength DropReasonType = 3425 + Drop_Http_UxDuoFaultResponseTransferEncoding DropReasonType = 3426 + Drop_Http_UxDuoFaultResponseLine DropReasonType = 3427 + Drop_Http_UxDuoFaultResponseHeader DropReasonType = 3428 + Drop_Http_UxDuoFaultConnect DropReasonType = 3429 + Drop_Http_UxDuoFaultChunkStart DropReasonType = 3430 + Drop_Http_UxDuoFaultChunkLength DropReasonType = 3431 + Drop_Http_UxDuoFaultChunkStop DropReasonType = 3432 + Drop_Http_UxDuoFaultHeadersAfterTrailers DropReasonType = 3433 + Drop_Http_UxDuoFaultHeadersAfterEnd DropReasonType = 3434 + Drop_Http_UxDuoFaultEndlessTrailer DropReasonType = 3435 + Drop_Http_UxDuoFaultTransferEncoding DropReasonType = 3436 + Drop_Http_UxDuoFaultMultipleTransferCodings DropReasonType = 3437 + Drop_Http_UxDuoFaultPushBody DropReasonType = 3438 + Drop_Http_UxDuoFaultStreamAbandoned DropReasonType = 3439 + Drop_Http_UxDuoFaultMalformedHost DropReasonType = 3440 + Drop_Http_UxDuoFaultDecompressionOverflow DropReasonType = 3441 + Drop_Http_UxDuoFaultIllegalHeaderName DropReasonType = 3442 + Drop_Http_UxDuoFaultIllegalHeaderValue DropReasonType = 3443 + Drop_Http_UxDuoFaultConnHeaderDisallowed DropReasonType = 3444 + Drop_Http_UxDuoFaultConnHeaderMalformed DropReasonType = 3445 + Drop_Http_UxDuoFaultCookieReassembly DropReasonType = 3446 + Drop_Http_UxDuoFaultStatusHeader DropReasonType = 3447 + Drop_Http_UxDuoFaultSchemeDisallowed DropReasonType = 3448 + Drop_Http_UxDuoFaultPathDisallowed DropReasonType = 3449 + Drop_Http_UxDuoFaultPushHost DropReasonType = 3450 + Drop_Http_UxDuoFaultGoawayReceived DropReasonType = 3451 + Drop_Http_UxDuoFaultAbortLegacyApp DropReasonType = 3452 + Drop_Http_UxDuoFaultUpgradeHeaderDisallowed DropReasonType = 3453 + Drop_Http_UxDuoFaultResponseUpgradeHeader DropReasonType = 3454 + Drop_Http_UxDuoFaultKeepAliveHeaderDisallowedDropReasonType DropReasonType = 3455 + Drop_Http_UxDuoFaultResponseKeepAliveHeader DropReasonType = 3456 + Drop_Http_UxDuoFaultProxyConnHeaderDisallowedDropReasonType DropReasonType = 3457 + Drop_Http_UxDuoFaultResponseProxyConnHeader DropReasonType = 3458 + Drop_Http_UxDuoFaultConnectionGoingAway DropReasonType = 3459 + Drop_Http_UxDuoFaultTransferEncodingDisallowed DropReasonType = 3460 + Drop_Http_UxDuoFaultContentLengthDisallowed DropReasonType = 3461 + Drop_Http_UxDuoFaultTrailerDisallowed DropReasonType = 3462 + Drop_Http_UxDuoFaultEnd DropReasonType = 3463 + + // + // WSK layer drops + // + Drop_Http_ReceiveSuppressed = 3600 + + // + // Http/SSL layer drops + // + Drop_Http_Generic DropReasonType = 3800 + Drop_Http_InvalidParameter DropReasonType = 3801 + Drop_Http_InsufficientResources DropReasonType = 3802 + Drop_Http_InvalidHandle DropReasonType = 3803 + Drop_Http_NotSupported DropReasonType = 3804 + Drop_Http_BadNetworkPath DropReasonType = 3805 + Drop_Http_InternalError DropReasonType = 3806 + Drop_Http_NoSuchPackage DropReasonType = 3807 + Drop_Http_PrivilegeNotHeld DropReasonType = 3808 + Drop_Http_CannotImpersonate DropReasonType = 3809 + Drop_Http_LogonFailure DropReasonType = 3810 + Drop_Http_NoSuchLogonSession DropReasonType = 3811 + Drop_Http_AccessDenied DropReasonType = 3812 + Drop_Http_NoLogonServers DropReasonType = 3813 + Drop_Http_TimeDifferenceAtDc DropReasonType = 3814 + + Drop_Http_End = 4000 +) diff --git a/pkg/module/metrics/drops.go b/pkg/module/metrics/drops.go index 833f9c2d20..6ebfb8de4c 100644 --- a/pkg/module/metrics/drops.go +++ b/pkg/module/metrics/drops.go @@ -141,7 +141,7 @@ func (d *DropCountMetrics) processLocalCtxFlow(flow *v1.Flow) { if labelValuesMap == nil { return } - dropReason := utils.DropReasonDescription(flow) + dropReason := metrics.GetDropTypeFlowDropReason(flow.GetDropReasonDesc()) // Ingress values if l := len(labelValuesMap[ingress]); l > 0 { diff --git a/pkg/plugin/registry/registry_windows.go b/pkg/plugin/registry/registry_windows.go index 8923695dc7..a8e3d64842 100644 --- a/pkg/plugin/registry/registry_windows.go +++ b/pkg/plugin/registry/registry_windows.go @@ -7,6 +7,7 @@ import ( "github.com/microsoft/retina/pkg/plugin/api" "github.com/microsoft/retina/pkg/plugin/windows/hnsstats" + "github.com/microsoft/retina/pkg/plugin/windows/pktmon" ) type NewPluginFn func(*kcfg.Config) api.Plugin @@ -16,4 +17,5 @@ var PluginHandler map[api.PluginName]NewPluginFn func RegisterPlugins() { PluginHandler = make(map[api.PluginName]NewPluginFn, 500) PluginHandler[hnsstats.Name] = hnsstats.New + PluginHandler[pktmon.Name] = pktmon.New } diff --git a/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go b/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go new file mode 100644 index 0000000000..af3a0da980 --- /dev/null +++ b/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go @@ -0,0 +1,132 @@ +package pktmon + +import ( + "context" + "errors" + "fmt" + golog "log" + + v1 "github.com/cilium/cilium/pkg/hubble/api/v1" + kcfg "github.com/microsoft/retina/pkg/config" + "github.com/microsoft/retina/pkg/enricher" + "github.com/microsoft/retina/pkg/log" + "github.com/microsoft/retina/pkg/metrics" + "github.com/microsoft/retina/pkg/plugin/api" + "github.com/microsoft/retina/pkg/utils" +) + +var ( + ErrNilEnricher error = errors.New("enricher is nil") +) + +const ( + Name = "pktmon" +) + +type PktMonPlugin struct { + enricher enricher.EnricherInterface + externalChannel chan *v1.Event + pkt PktMon + l *log.ZapLogger +} + +func (p *PktMonPlugin) Compile(ctx context.Context) error { + return nil +} + +func (p *PktMonPlugin) Generate(ctx context.Context) error { + return nil +} + +func (p *PktMonPlugin) Init() error { + p.pkt = &WinPktMon{ + l: log.Logger().Named(Name), + } + p.l = log.Logger().Named(Name) + + return nil +} + +func (p *PktMonPlugin) Name() string { + return "pktmon" +} + +func (p *PktMonPlugin) SetupChannel(ch chan *v1.Event) error { + p.externalChannel = ch + return nil +} + +func New(cfg *kcfg.Config) api.Plugin { + return &PktMonPlugin{} +} + +type DNSRequest struct { + SourceIP byte + DestinationIP byte +} + +func (p *PktMonPlugin) Start(ctx context.Context) error { + fmt.Printf("setting up enricher since pod level is enabled \n") + p.enricher = enricher.Instance() + if p.enricher == nil { + return ErrNilEnricher + } + + // calling packet capture routine concurrently + golog.Println("Starting (go)") + err := p.pkt.Initialize() + if err != nil { + return fmt.Errorf("Failed to initialize pktmon: %v", err) + } + + for { + select { + case <-ctx.Done(): + return fmt.Errorf("pktmon context cancelled: %v", ctx.Err()) + default: + fl, meta, packet, err := p.pkt.GetNextPacket() + if errors.Is(err, ErrNotSupported) { + continue + } + + if err != nil { + golog.Printf("Error getting packet: %v\n", err) + continue + } + + // do this here instead of GetNextPacket to keep higher level + // packet parsing out of L4 parsing + err = parseDNS(fl, meta, packet) + if err != nil { + golog.Printf("Error parsing DNS: %v\n", err) + continue + } + + ev := &v1.Event{ + Event: fl, + Timestamp: fl.Time, + } + + if p.enricher != nil { + p.enricher.Write(ev) + } else { + fmt.Printf("enricher is nil when writing\n") + } + + // Write the event to the external channel. + if p.externalChannel != nil { + select { + case p.externalChannel <- ev: + default: + // Channel is full, drop the event. + // We shouldn't slow down the reader. + metrics.LostEventsCounter.WithLabelValues(utils.ExternalChannel, string(Name)).Inc() + } + } + } + } +} + +func (p *PktMonPlugin) Stop() error { + return nil +} diff --git a/pkg/plugin/windows/pktmon/pktmon_windows.go b/pkg/plugin/windows/pktmon/pktmon_windows.go new file mode 100644 index 0000000000..d3a215af5e --- /dev/null +++ b/pkg/plugin/windows/pktmon/pktmon_windows.go @@ -0,0 +1,265 @@ +package pktmon + +// #cgo CFLAGS: -I packetmonitorsupport +// #cgo LDFLAGS: -L packetmonitorsupport +// #cgo LDFLAGS: -lpktmonapi -lws2_32 +// +// #include "PacketMonitor.h" +// #include "packetmonitorpacket.h" +// #include "packetmonitorsupportutil.h" +// #include "packetmonitorsupport.h" +// #include "packetmonitorsupport.c" +// #include "packetmonitorpacketparse.c" +import "C" +import ( + "errors" + "fmt" + golog "log" + "unsafe" + + "github.com/cilium/cilium/api/v1/flow" + "github.com/google/gopacket" + "github.com/google/gopacket/layers" + "github.com/microsoft/retina/pkg/log" + "github.com/microsoft/retina/pkg/metrics" + "github.com/microsoft/retina/pkg/utils" +) + +var ( + ErrFailedToParseWithGoPacket error = fmt.Errorf("Failed to parse with gopacket") + ErrNotSupported error = fmt.Errorf("Not supported") + ErrFailedToStartPacketCapture error = fmt.Errorf("Failed to start pktmon packet capture") + ErrUnknownPacketType error = fmt.Errorf("Unknown packet type") + + VarDefaultBufferMultiplier = 10 + + TruncationSize = 128 +) + +type WinPktMon struct { + l *log.ZapLogger +} + +func (w *WinPktMon) Initialize() error { + var UserContext C.PACKETMONITOR_STREAM_EVENT_INFO + + // calling packet capture routine concurrently + fmt.Println("Starting (go)") + trunc := C.int(TruncationSize) + result := C.InitializePacketCapture(unsafe.Pointer(&UserContext), C.int(VarDefaultBufferMultiplier), trunc) + if result != 0 { + return fmt.Errorf("Error code %d, %w ", result, ErrFailedToStartPacketCapture) + } + + return nil +} + +func (w *WinPktMon) GetNextPacket() (*flow.Flow, *utils.RetinaMetadata, gopacket.Packet, error) { + buffer := make([]byte, 5000) + var bufferSize C.int = 5000 // Windows LSO MTU size, Pktmon ring buffers size in Pktmon dll is (64 * 4kb) + + // Three memory buffers + // - Streaming feature descripter buffer + // - Descripter buffer + // - actual packet buffer (64 * 4kb) + var payloadLength C.int = 0 + var StreamMetaData C.PACKETMONITOR_STREAM_METADATA_RETINA + var PacketHeaderInfo C.PACKETMONITOR_PACKET_HEADER_INFO + var MissedPacketsWrite C.int = 0 // packets getting missed in the driver + var MissedPacketsRead C.int = 0 // packets getting missed in the driver + + // Note: if packet header info of nil is passed, then it wont fall back on to C parsing + C.GetNextPacket((*C.uchar)(unsafe.Pointer(&buffer[0])), bufferSize, &payloadLength, &StreamMetaData, nil, &MissedPacketsWrite, &MissedPacketsRead) + + if int(MissedPacketsRead) > 0 { + golog.Printf("Missed packets read: %d\n", int(MissedPacketsRead)) + } + + if int(MissedPacketsWrite) > 0 { + golog.Printf("Missed packets write: %d\n", int(MissedPacketsWrite)) + } + + packet, err := w.parsePacket(buffer, StreamMetaData) + if err != nil { + if errors.Is(err, ErrFailedToParseWithGoPacket) { + + // we will hit this if failing to parse with gopacket, and fall back to C parsing. + // However in the current impliementation, pulling source/dest info via C libs is nontrivial. + // To go through C parsing, pass the PacketHeaderInfo struct to the above C.GetNextPacket + // so marking this tombstone as todo and erroring out. + if PacketHeaderInfo.ParseErrorCode == 0 { + return nil, nil, nil, fmt.Errorf("failed to parse with gopacket, using C, but address not impl(src port %d, dst port %d, proto :%d)", PacketHeaderInfo.PortLocal, PacketHeaderInfo.PortRemote, PacketHeaderInfo.IpProtocol) + + } else { + status := PacketHeaderInfo.ParseErrorCode + return nil, nil, nil, fmt.Errorf("error code %d: %s, %w", PacketHeaderInfo.ParseErrorCode, C.GoString(C.ParsePacketStatusToString(status)), ErrNotSupported) + } + } else { + return nil, nil, nil, fmt.Errorf("failed to parse with gopacket: %w", err) + } + } + + // windows timestamp to unix timestamp + unixTime := w.getUnixTimestamp(StreamMetaData) + + // get src/dst ip, proto + ip, err := w.parseL4(packet) + if err != nil { + return nil, nil, nil, fmt.Errorf("failed to parse IP layer: %w", err) + } + + // get src/dst ports from protocol layers + tcp, udp := &layers.TCP{}, &layers.UDP{} + srcPort, dstPort := uint32(0), uint32(0) + if ip.Protocol == layers.IPProtocolTCP { + tcp, err = w.parseTCP(packet) + if err != nil { + return nil, nil, nil, fmt.Errorf("failed to parse TCP layer: %w", err) + } + srcPort = uint32(tcp.SrcPort) + dstPort = uint32(tcp.DstPort) + } else if ip.Protocol == layers.IPProtocolUDP { + udp, err = w.parseUDP(packet) + if err != nil { + return nil, nil, nil, fmt.Errorf("failed to parse UDP layer: %w", err) + } + srcPort = uint32(udp.SrcPort) + dstPort = uint32(udp.DstPort) + } + + // get verdict, forwarded, dropped, etc + verdict := w.getVerdict(StreamMetaData) + if verdict == flow.Verdict_DROPPED { + fmt.Printf("packet dropped from %s:%d to %s:%d, proto: %d, \t dropreason %s\n", ip.SrcIP, srcPort, ip.DstIP, dstPort, ip.Protocol, metrics.GetDropReason(uint32(StreamMetaData.DropReason))) + } + + // create the flow using utils + fl := utils.ToFlow( + int64(unixTime), // timestamp + ip.SrcIP, + ip.DstIP, + srcPort, + dstPort, + uint8(ip.Protocol), + uint32(StreamMetaData.ComponentId), // observationPoint + verdict, // flow.Verdict + ) + + // add TCP flags now that we have flow + if ip.Protocol == layers.IPProtocolTCP { + utils.AddTcpFlagsBool(fl, tcp.SYN, tcp.ACK, tcp.FIN, tcp.RST, tcp.PSH, tcp.URG) + } + + // add metadata + meta := &utils.RetinaMetadata{ + Bytes: uint64(payloadLength), + } + + return fl, meta, packet, nil +} + +func (w *WinPktMon) getUnixTimestamp(StreamMetaData C.PACKETMONITOR_STREAM_METADATA_RETINA) int64 { + // use C conversion to pull Windows timestamp + var timestampint C.longlong + C.LargeIntegerToInt(StreamMetaData.TimeStamp, ×tampint) + timestamp := int64(timestampint) + + // convert from windows to unix time + var epochDifference int64 = 116444736000000000 + return (timestamp - epochDifference) / 10000000 +} + +func (w *WinPktMon) getVerdict(StreamMetaData C.PACKETMONITOR_STREAM_METADATA_RETINA) flow.Verdict { + if StreamMetaData.DropReason != 0 { + return flow.Verdict_DROPPED + } + return flow.Verdict_FORWARDED +} + +func (w *WinPktMon) parseL4(packet gopacket.Packet) (*layers.IPv4, error) { + ip := &layers.IPv4{} + if ipLayer := packet.Layer(layers.LayerTypeIPv4); ipLayer != nil { + ip, _ = ipLayer.(*layers.IPv4) + } else { + return nil, fmt.Errorf("Failed to parse IP layer %w", ErrFailedToParseWithGoPacket) + } + return ip, nil +} + +func (w *WinPktMon) parseTCP(packet gopacket.Packet) (*layers.TCP, error) { + tcp := &layers.TCP{} + if tcpLayer := packet.Layer(layers.LayerTypeTCP); tcpLayer != nil { + tcp, _ = tcpLayer.(*layers.TCP) + } else { + return nil, fmt.Errorf("Failed to parse TCP layer %w", ErrFailedToParseWithGoPacket) + } + return tcp, nil +} + +func (w *WinPktMon) parseUDP(packet gopacket.Packet) (*layers.UDP, error) { + udp := &layers.UDP{} + if udpLayer := packet.Layer(layers.LayerTypeUDP); udpLayer != nil { + udp, _ = udpLayer.(*layers.UDP) + } else { + return nil, fmt.Errorf("Failed to parse UDP layer %w", ErrFailedToParseWithGoPacket) + } + return udp, nil +} + +func (w *WinPktMon) parsePacket(buffer []byte, StreamMetaData C.PACKETMONITOR_STREAM_METADATA_RETINA) (gopacket.Packet, error) { + var packet gopacket.Packet + // Ethernet + if StreamMetaData.PacketType == 1 { + packet = gopacket.NewPacket(buffer, layers.LayerTypeEthernet, gopacket.NoCopy) + + // IPv4 + } else if StreamMetaData.PacketType == 3 { + packet = gopacket.NewPacket(buffer, layers.LayerTypeIPv4, gopacket.NoCopy) + } else { + return nil, ErrUnknownPacketType + } + return packet, nil +} + +func parseDNS(fl *flow.Flow, metadata *utils.RetinaMetadata, packet gopacket.Packet) error { + dns := &layers.DNS{} + if dnsLayer := packet.Layer(layers.LayerTypeDNS); dnsLayer != nil { + dns, _ = dnsLayer.(*layers.DNS) + } else { + return nil + } + + if dns != nil { + //fmt.Printf("qType %d\n", packet.dns.OpCode) + var qtype string + switch dns.OpCode { + case layers.DNSOpCodeQuery: + qtype = "Q" + case layers.DNSOpCodeStatus: + qtype = "R" + default: + qtype = "U" + } + + var as, qs []string + for _, a := range dns.Answers { + if a.IP != nil { + as = append(as, a.IP.String()) + } + } + for _, q := range dns.Questions { + qs = append(qs, string(q.Name)) + } + + var query string + if len(dns.Questions) > 0 { + query = string(dns.Questions[0].Name[:]) + } + + fl.Verdict = utils.Verdict_DNS + + utils.AddDNSInfo(fl, metadata, qtype, uint32(dns.ResponseCode), query, []string{qtype}, len(as), as) + } + + return nil +} diff --git a/pkg/plugin/windows/pktmon/types.go b/pkg/plugin/windows/pktmon/types.go new file mode 100644 index 0000000000..3771e05dd5 --- /dev/null +++ b/pkg/plugin/windows/pktmon/types.go @@ -0,0 +1,42 @@ +package pktmon + +import ( + "net" + + "github.com/cilium/cilium/api/v1/flow" + "github.com/google/gopacket" + "github.com/google/gopacket/layers" + "github.com/microsoft/retina/pkg/utils" +) + +type PktMon interface { + Initialize() error + GetNextPacket() (*flow.Flow, *utils.RetinaMetadata, gopacket.Packet, error) +} + +type MockPktMon struct{} + +func (m *MockPktMon) Initialize() error { + return nil +} + +func (m *MockPktMon) GetNextPacket() (gopacket.Packet, *Metadata, error) { + ip := &layers.IPv4{ + SrcIP: net.IP{1, 2, 3, 4}, + DstIP: net.IP{5, 6, 7, 8}, + // etc... + } + buf := gopacket.NewSerializeBuffer() + opts := gopacket.SerializeOptions{} // See SerializeOptions for more details. + err := ip.SerializeTo(buf, opts) + return nil, nil, err +} + +type Metadata struct { + Timestamp int64 + DropReason uint32 + ComponentID uint32 + PayloadLength uint64 + Verdict flow.Verdict + MissedPackets uint32 +} diff --git a/pkg/utils/flow_utils.go b/pkg/utils/flow_utils.go index 5fc0edc460..7068095425 100644 --- a/pkg/utils/flow_utils.go +++ b/pkg/utils/flow_utils.go @@ -147,6 +147,21 @@ func AddTCPFlags(f *flow.Flow, syn, ack, fin, rst, psh, urg uint16) { } } +func AddTcpFlagsBool(f *flow.Flow, syn, ack, fin, rst, psh, urg bool) { + if f.L4.GetTCP() == nil { + return + } + + f.L4.GetTCP().Flags = &flow.TCPFlags{ + SYN: syn, + ACK: ack, + FIN: fin, + RST: rst, + PSH: psh, + URG: urg, + } +} + // Add TSval/TSecr to the flow's metadata as TCP ID. // The TSval/TSecr works as ID for the flow. // We will use this ID to calculate latency. diff --git a/windows/setkubeconfigpath.ps1 b/windows/setkubeconfigpath.ps1 index 38ec3440b2..f2aa99e1e3 100644 --- a/windows/setkubeconfigpath.ps1 +++ b/windows/setkubeconfigpath.ps1 @@ -1,11 +1,11 @@ -# pull the server value from the kubeconfig on host to construct our own kubeconfig, but using service principal settings -# this is required to build a kubeconfig using the kubeconfig on disk in c:\k, and the service principle granted in the container mount, to generate clientset -$cpEndpoint = Get-Content C:\k\config | ForEach-Object -Process {if($_.Contains("server:")) {$_.Trim().Split()[1]}} -$token = Get-Content -Path $env:CONTAINER_SANDBOX_MOUNT_POINT\var\run\secrets\kubernetes.io\serviceaccount\token -$ca = Get-Content -Raw -Path $env:CONTAINER_SANDBOX_MOUNT_POINT\var\run\secrets\kubernetes.io\serviceaccount\ca.crt -$caBase64 = [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($ca)) -$server = "server: $cpEndpoint" -(Get-Content $env:CONTAINER_SANDBOX_MOUNT_POINT\kubeconfigtemplate.yaml). - replace("", $caBase64). - replace("", $server.Trim()). - replace("", $token) | Set-Content $env:CONTAINER_SANDBOX_MOUNT_POINT\kubeconfig -Force +# pull the server value from the kubeconfig on host to construct our own kubeconfig, but using service principal settings +# this is required to build a kubeconfig using the kubeconfig on disk in c:\k, and the service principle granted in the container mount, to generate clientset +$cpEndpoint = Get-Content C:\k\config | ForEach-Object -Process {if($_.Contains("server:")) {$_.Trim().Split()[1]}} +$token = Get-Content -Path $env:CONTAINER_SANDBOX_MOUNT_POINT\var\run\secrets\kubernetes.io\serviceaccount\token +$ca = Get-Content -Raw -Path $env:CONTAINER_SANDBOX_MOUNT_POINT\var\run\secrets\kubernetes.io\serviceaccount\ca.crt +$caBase64 = [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($ca)) +$server = "server: $cpEndpoint" +(Get-Content $env:CONTAINER_SANDBOX_MOUNT_POINT\kubeconfigtemplate.yaml). + replace("", $caBase64). + replace("", $server.Trim()). + replace("", $token) | Set-Content $env:CONTAINER_SANDBOX_MOUNT_POINT\kubeconfig -Force From b0b717dc87f94869b2c0030b4e0dd02e36e5e094 Mon Sep 17 00:00:00 2001 From: Mathew Merrick Date: Thu, 16 May 2024 16:23:24 -0700 Subject: [PATCH 07/13] windows dropreasons --- pkg/metrics/types_windows.go | 1200 +++++++++-------- .../windows/pktmon/pktmon_parsing_windows.go | 116 ++ .../windows/pktmon/pktmon_plugin_windows.go | 50 +- pkg/plugin/windows/pktmon/pktmon_windows.go | 109 +- pkg/plugin/windows/pktmon/types.go | 1 + pkg/utils/flow_utils.go | 2 +- pkg/utils/metadata_linux.pb.go | 139 +- pkg/utils/metadata_linux.proto | 1 - 8 files changed, 831 insertions(+), 787 deletions(-) create mode 100644 pkg/plugin/windows/pktmon/pktmon_parsing_windows.go diff --git a/pkg/metrics/types_windows.go b/pkg/metrics/types_windows.go index d423dd2ba5..71f80fe0b1 100644 --- a/pkg/metrics/types_windows.go +++ b/pkg/metrics/types_windows.go @@ -6,17 +6,17 @@ import ( "github.com/cilium/cilium/api/v1/flow" ) -func GetDropTypeFlowDropReason(dr flow.DropReason) string { +func GetDropTypeFlowDropReason(dr flow.DropReason) DropReasonType { if v, ok := dropReasons[uint32(dr)]; ok { - return v + return v.Reason } return fmt.Sprintf("UnknownDropReason(%d)", dr) } -func GetDropReason(reason uint32) string { +func GetDropReason(reason uint32) DropReasonType { if v, ok := dropReasons[reason]; ok { - return v + return v.Reason } return fmt.Sprintf("UnknownDropReason(%d)", reason) @@ -24,453 +24,489 @@ func GetDropReason(reason uint32) string { func (d DropReasonType) String() string { if v, ok := dropReasons[uint32(d)]; ok { - return v + return v.String } return fmt.Sprintf("UnknownDropReason(%d)", d) } -var dropReasons = map[uint32]string{ - 0: "Drop_Unknown", - 1: "Drop_InvalidData", - 2: "Drop_InvalidPacket", - 3: "Drop_Resources", - 4: "Drop_NotReady", - 5: "Drop_Disconnected", - 6: "Drop_NotAccepted", - 7: "Drop_Busy", - 8: "Drop_Filtered", - 9: "Drop_FilteredVLAN", - 10: "Drop_UnauthorizedVLAN", - 11: "Drop_UnauthorizedMAC", - 12: "Drop_FailedSecurityPolicy", - 13: "Drop_FailedPvlanSetting", - 14: "Drop_Qos", - 15: "Drop_Ipsec", - 16: "Drop_MacSpoofing", - 17: "Drop_DhcpGuard", - 18: "Drop_RouterGuard", - 19: "Drop_BridgeReserved", - 20: "Drop_VirtualSubnetId", - 21: "Drop_RequiredExtensionMissing", - 22: "Drop_InvalidConfig", - 23: "Drop_MTUMismatch", - 24: "Drop_NativeFwdingReq", - 25: "Drop_InvalidVlanFormat", - 26: "Drop_InvalidDestMac", - 27: "Drop_InvalidSourceMac", - 28: "Drop_InvalidFirstNBTooSmall", - 29: "Drop_Wnv", - 30: "Drop_StormLimit", - 31: "Drop_InjectedIcmp", - 32: "Drop_FailedDestinationListUpdate", - 33: "Drop_NicDisabled", - 34: "Drop_FailedPacketFilter", - 35: "Drop_SwitchDataFlowDisabled", - 36: "Drop_FilteredIsolationUntagged", - 37: "Drop_InvalidPDQueue", - 38: "Drop_LowPower", - - 201: "Drop_Pause", - 202: "Drop_Reset", - 203: "Drop_SendAborted", - 204: "Drop_ProtocolNotBound", - 205: "Drop_Failure", - 206: "Drop_InvalidLength", - 207: "Drop_HostOutOfMemory", - 208: "Drop_FrameTooLong", - 209: "Drop_FrameTooShort", - 210: "Drop_FrameLengthError", - 211: "Drop_CrcError", - 212: "Drop_BadFrameChecksum", - 213: "Drop_FcsError", - 214: "Drop_SymbolError", - 215: "Drop_HeadQTimeout", - 216: "Drop_StalledDiscard", - 217: "Drop_RxQFull", - 218: "Drop_PhysLayerError", - 219: "Drop_DmaError", - 220: "Drop_FirmwareError", - 221: "Drop_DecryptionFailed", - 222: "Drop_BadSignature", - 223: "Drop_CoalescingError", - 225: "Drop_VlanSpoofing", - 226: "Drop_UnallowedEtherType", - 227: "Drop_VportDown", - 228: "Drop_SteeringMismatch", - 401: "Drop_MicroportError", - 402: "Drop_VfNotReady", - 403: "Drop_MicroportNotReady", - 404: "Drop_VMBusError", - 601: "Drop_FL_LoopbackPacket", - 602: "Drop_FL_InvalidSnapHeader", - 603: "Drop_FL_InvalidEthernetType", - 604: "Drop_FL_InvalidPacketLength", - 605: "Drop_FL_HeaderNotContiguous", - 606: "Drop_FL_InvalidDestinationType", - 607: "Drop_FL_InterfaceNotReady", - 608: "Drop_FL_ProviderNotReady", - 609: "Drop_FL_InvalidLsoInfo", - 610: "Drop_FL_InvalidUsoInfo", - 611: "Drop_FL_InvalidMedium", - 612: "Drop_FL_InvalidArpHeader", - 613: "Drop_FL_NoClientInterface", - 614: "Drop_FL_TooManyNetBuffers", - 615: "Drop_FL_FlsNpiClientDrop", - 701: "Drop_ArpGuard", - 702: "Drop_ArpLimiter", - 703: "Drop_DhcpLimiter", - 704: "Drop_BlockBroadcast", - 705: "Drop_BlockNonIp", - 706: "Drop_ArpFilter", - 707: "Drop_Ipv4Guard", - 708: "Drop_Ipv6Guard", - 709: "Drop_MacGuard", - 710: "Drop_BroadcastNoDestinations", - 711: "Drop_UnicastNoDestination", - 712: "Drop_UnicastPortNotReady", - 713: "Drop_SwitchCallbackFailed", - 714: "Drop_Icmpv6Limiter", - 715: "Drop_Intercept", - 716: "Drop_InterceptBlock", - 717: "Drop_NDPGuard", - 718: "Drop_PortBlocked", - 719: "Drop_NicSuspended", - 901: "Drop_NL_BadSourceAddress", - 902: "Drop_NL_NotLocallyDestined", - 903: "Drop_NL_ProtocolUnreachable", - 904: "Drop_NL_PortUnreachable", - 905: "Drop_NL_BadLength", - 906: "Drop_NL_MalformedHeader", - 907: "Drop_NL_NoRoute", - 908: "Drop_NL_BeyondScope", - 909: "Drop_NL_InspectionDrop", - 910: "Drop_NL_TooManyDecapsulations", - 911: "Drop_NL_AdministrativelyProhibited", - 912: "Drop_NL_BadChecksum", - 913: "Drop_NL_ReceivePathMax", - 914: "Drop_NL_HopLimitExceeded", - 915: "Drop_NL_AddressUnreachable", - 916: "Drop_NL_RscPacket", - 917: "Drop_NL_ForwardPathMax", - 918: "Drop_NL_ArbitrationUnhandled", - 919: "Drop_NL_InspectionAbsorb", - 920: "Drop_NL_DontFragmentMtuExceeded", - 921: "Drop_NL_BufferLengthExceeded", - 922: "Drop_NL_AddressResolutionTimeout", - 923: "Drop_NL_AddressResolutionFailure", - 924: "Drop_NL_IpsecFailure", - 925: "Drop_NL_ExtensionHeadersFailure", - 926: "Drop_NL_IpsnpiClientDrop", - 927: "Drop_NL_UnsupportedOffload", - 928: "Drop_NL_RoutingFailure", - 929: "Drop_NL_AncillaryDataFailure", - 930: "Drop_NL_RawDataFailure", - 931: "Drop_NL_SessionStateFailure", - 932: "Drop_NL_IpsnpiModifiedButNotForwarded", - 933: "Drop_NL_IpsnpiNoNextHop", - 934: "Drop_NL_IpsnpiNoCompartment", - 935: "Drop_NL_IpsnpiNoInterface", - 936: "Drop_NL_IpsnpiNoSubInterface", - 937: "Drop_NL_IpsnpiInterfaceDisabled", - 938: "Drop_NL_IpsnpiSegmentationFailed", - 939: "Drop_NL_IpsnpiNoEthernetHeader", - 940: "Drop_NL_IpsnpiUnexpectedFragment", - 941: "Drop_NL_IpsnpiUnsupportedInterfaceType", - 942: "Drop_NL_IpsnpiInvalidLsoInfo", - 943: "Drop_NL_IpsnpiInvalidUsoInfo", - 944: "Drop_NL_InternalError", - 945: "Drop_NL_AdministrativelyConfigured", - 946: "Drop_NL_BadOption", - 947: "Drop_NL_LoopbackDisallowed", - 948: "Drop_NL_SmallerScope", - 949: "Drop_NL_QueueFull", - 950: "Drop_NL_InterfaceDisabled", - 951: "Drop_NL_IcmpGeneric", - 952: "Drop_NL_IcmpTruncatedHeader", - 953: "Drop_NL_IcmpInvalidChecksum", - 954: "Drop_NL_IcmpInspection", - 955: "Drop_NL_IcmpNeighborDiscoveryLoopback", - 956: "Drop_NL_IcmpUnknownType", - 957: "Drop_NL_IcmpTruncatedIpHeader", - 958: "Drop_NL_IcmpOversizedIpHeader", - 959: "Drop_NL_IcmpNoHandler", - 960: "Drop_NL_IcmpRespondingToError", - 961: "Drop_NL_IcmpInvalidSource", - 962: "Drop_NL_IcmpInterfaceRateLimit", - 963: "Drop_NL_IcmpPathRateLimit", - 964: "Drop_NL_IcmpNoRoute", - 965: "Drop_NL_IcmpMatchingRequestNotFound", - 966: "Drop_NL_IcmpBufferTooSmall", - 967: "Drop_NL_IcmpAncillaryDataQuery", - 968: "Drop_NL_IcmpIncorrectHopLimit", - 969: "Drop_NL_IcmpUnknownCode", - 970: "Drop_NL_IcmpSourceNotLinkLocal", - 971: "Drop_NL_IcmpTruncatedNdHeader", - 972: "Drop_NL_IcmpInvalidNdOptSourceLinkAddr", - 973: "Drop_NL_IcmpInvalidNdOptMtu", - 974: "Drop_NL_IcmpInvalidNdOptPrefixInformation", - 975: "Drop_NL_IcmpInvalidNdOptRouteInformation", - 976: "Drop_NL_IcmpInvalidNdOptRdnss", - 977: "Drop_NL_IcmpInvalidNdOptDnssl", - 978: "Drop_NL_IcmpPacketParsingFailure", - 979: "Drop_NL_IcmpDisallowed", - 980: "Drop_NL_IcmpInvalidRouterAdvertisement", - 981: "Drop_NL_IcmpSourceFromDifferentLink", - 982: "Drop_NL_IcmpInvalidRedirectDestinationOrTarget", - 983: "Drop_NL_IcmpInvalidNdTarget", - 984: "Drop_NL_IcmpNaMulticastAndSolicited", - 985: "Drop_NL_IcmpNdLinkLayerAddressIsLocal", - 986: "Drop_NL_IcmpDuplicateEchoRequest", - 987: "Drop_NL_IcmpNotAPotentialRouter", - 988: "Drop_NL_IcmpInvalidMldQuery", - 989: "Drop_NL_IcmpInvalidMldReport", - 990: "Drop_NL_IcmpLocallySourcedMldReport", - 991: "Drop_NL_IcmpNotLocallyDestined", - 992: "Drop_NL_ArpInvalidSource", - 993: "Drop_NL_ArpInvalidTarget", - 994: "Drop_NL_ArpDlSourceIsLocal", - 995: "Drop_NL_ArpNotLocallyDestined", - 996: "Drop_NL_NlClientDiscard", - 997: "Drop_NL_IpsnpiUroSegmentSizeExceedsMtu", - 998: "Drop_NL_IcmpFragmentedPacket", - 999: "Drop_NL_FirstFragmentIncomplete", - 1000: "Drop_NL_SourceViolation", - 1001: "Drop_NL_IcmpJumbogram", - 1002: "Drop_NL_SwUsoFailure", - 1200: "Drop_INET_SourceUnspecified", - 1201: "Drop_INET_DestinationMulticast", - 1202: "Drop_INET_HeaderInvalid", - 1203: "Drop_INET_ChecksumInvalid", - 1204: "Drop_INET_EndpointNotFound", - 1205: "Drop_INET_ConnectedPath", - 1206: "Drop_INET_SessionState", - 1207: "Drop_INET_ReceiveInspection", - 1208: "Drop_INET_AckInvalid", - 1209: "Drop_INET_ExpectedSyn", - 1210: "Drop_INET_Rst", - 1211: "Drop_INET_SynRcvdSyn", - 1212: "Drop_INET_SimultaneousConnect", - 1213: "Drop_INET_PawsFailed", - 1214: "Drop_INET_LandAttack", - 1215: "Drop_INET_MissedReset", - 1216: "Drop_INET_OutsideWindow", - 1217: "Drop_INET_DuplicateSegment", - 1218: "Drop_INET_ClosedWindow", - 1219: "Drop_INET_TcbRemoved", - 1220: "Drop_INET_FinWait2", - 1221: "Drop_INET_ReassemblyConflict", - 1222: "Drop_INET_FinReceived", - 1223: "Drop_INET_ListenerInvalidFlags", - 1224: "Drop_INET_TcbNotInTcbTable", - 1225: "Drop_INET_TimeWaitTcbReceivedRstOutsideWindow", - 1226: "Drop_INET_TimeWaitTcbSynAndOtherFlags", - 1227: "Drop_INET_TimeWaitTcb", - 1228: "Drop_INET_SynAckWithFastopenCookieRequest", - 1229: "Drop_INET_PauseAccept", - 1230: "Drop_INET_SynAttack", - 1231: "Drop_INET_AcceptInspection", - 1232: "Drop_INET_AcceptRedirection", - - // - // Slbmux Error - // - 1301: "Drop_SlbMux_ParsingFailure", - 1302: "Drop_SlbMux_FirstFragmentMiss", - 1303: "Drop_SlbMux_ICMPErrorPayloadValidationFailure", - 1304: "Drop_SlbMux_ICMPErrorPacketMatchNoSession", - 1305: "Drop_SlbMux_ExternalHairpinNexthopLookupFailure", - 1306: "Drop_SlbMux_NoMatchingStaticMapping", - 1307: "Drop_SlbMux_NexthopReferenceFailure", - 1308: "Drop_SlbMux_CloningFailure", - 1309: "Drop_SlbMux_TranslationFailure", - 1310: "Drop_SlbMux_HopLimitExceeded", - 1311: "Drop_SlbMux_PacketBiggerThanMTU", - 1312: "Drop_SlbMux_UnexpectedRouteLookupFailure", - 1313: "Drop_SlbMux_NoRoute", - 1314: "Drop_SlbMux_SessionCreationFailure", - 1315: "Drop_SlbMux_NexthopNotOverExternalInterface", - 1316: "Drop_SlbMux_NexthopExternalInterfaceMissNATInstance", - 1317: "Drop_SlbMux_NATItselfCantBeInternalNexthop", - 1318: "Drop_SlbMux_PacketRoutableInItsArrivalCompartment", - 1319: "Drop_SlbMux_PacketTransportProtocolNotSupported", - 1320: "Drop_SlbMux_PacketIsDestinedLocally", - 1321: "Drop_SlbMux_PacketDestinationIPandPortNotSubjectToNAT", - 1322: "Drop_SlbMux_MuxReject", - 1323: "Drop_SlbMux_DipLookupFailure", - 1324: "Drop_SlbMux_MuxEncapsulationFailure", - 1325: "Drop_SlbMux_InvalidDiagPacketEncapType", - 1326: "Drop_SlbMux_DiagPacketIsRedirect", - 1327: "Drop_SlbMux_UnableToHandleRedirect", - - // - // Ipsec Errors - // - 1401: "Drop_Ipsec_BadSpi", - 1402: "Drop_Ipsec_SALifetimeExpired", - 1403: "Drop_Ipsec_WrongSA", - 1404: "Drop_Ipsec_ReplayCheckFailed", - 1405: "Drop_Ipsec_InvalidPacket", - 1406: "Drop_Ipsec_IntegrityCheckFailed", - 1407: "Drop_Ipsec_ClearTextDrop", - 1408: "Drop_Ipsec_AuthFirewallDrop", - 1409: "Drop_Ipsec_ThrottleDrop", - 1410: "Drop_Ipsec_Dosp_Block", - 1411: "Drop_Ipsec_Dosp_ReceivedMulticast", - 1412: "Drop_Ipsec_Dosp_InvalidPacket", - 1413: "Drop_Ipsec_Dosp_StateLookupFailed", - 1414: "Drop_Ipsec_Dosp_MaxEntries", - 1415: "Drop_Ipsec_Dosp_KeymodNotAllowed", - 1416: "Drop_Ipsec_Dosp_MaxPerIpRateLimitQueues", - 1417: "Drop_Ipsec_NoMemory", - 1418: "Drop_Ipsec_Unsuccessful", - - // - // NetCx Drop Reasons - // - 1501: "Drop_NetCx_NetPacketLayoutParseFailure", - 1502: "Drop_NetCx_SoftwareChecksumFailure", - 1503: "Drop_NetCx_NicQueueStop", - 1504: "Drop_NetCx_InvalidNetBufferLength", - 1505: "Drop_NetCx_LSOFailure", - 1506: "Drop_NetCx_USOFailure", - 1507: "Drop_NetCx_BufferBounceFailureAndPacketIgnore", - - // - // Http errors 3000 - 4000. - // These must be in sync with cmd\resource.h - // - 3000: "Drop_Http_InvalidPacket", - - // - // UlErrors - // - 3001: "Drop_Http_UlError_Begin", - 3002: "Drop_Http_UlError", - 3003: "Drop_Http_UlErrorVerb", - 3004: "Drop_Http_UlErrorUrl", - 3005: "Drop_Http_UlErrorHeader", - 3006: "Drop_Http_UlErrorHost", - 3007: "Drop_Http_UlErrorNum", - 3008: "Drop_Http_UlErrorFieldLength", - 3009: "Drop_Http_UlErrorRequestLength", - 3010: "Drop_Http_UlErrorUnauthorized", - 3011: "Drop_Http_UlErrorForbiddenUrl", - 3012: "Drop_Http_UlErrorNotFound", - 3013: "Drop_Http_UlErrorContentLength", - 3014: "Drop_Http_UlErrorPreconditionFailed", - 3015: "Drop_Http_UlErrorEntityTooLarge", - 3016: "Drop_Http_UlErrorUrlLength", - 3017: "Drop_Http_UlErrorRangeNotSatisfiable", - 3018: "Drop_Http_UlErrorMisdirectedRequest", - 3019: "Drop_Http_UlErrorInternalServer", - 3020: "Drop_Http_UlErrorNotImplemented", - 3021: "Drop_Http_UlErrorUnavailable", - 3022: "Drop_Http_UlErrorConnectionLimit", - 3023: "Drop_Http_UlErrorRapidFailProtection", - 3024: "Drop_Http_UlErrorRequestQueueFull", - 3025: "Drop_Http_UlErrorDisabledByAdmin", - 3026: "Drop_Http_UlErrorDisabledByApp", - 3027: "Drop_Http_UlErrorJobObjectFired", - 3028: "Drop_Http_UlErrorAppPoolBusy", - 3029: "Drop_Http_UlErrorVersion", - 3030: "Drop_Http_UlError_End", - - // - // Stream-specific fault codes. - // - 3400: "Drop_Http_UxDuoFaultBegin", - 3401: "Drop_Http_UxDuoFaultUserAbort", - 3402: "Drop_Http_UxDuoFaultCollection", - 3403: "Drop_Http_UxDuoFaultClientResetStream", - 3404: "Drop_Http_UxDuoFaultMethodNotFound", - 3405: "Drop_Http_UxDuoFaultSchemeMismatch", - 3406: "Drop_Http_UxDuoFaultSchemeNotFound", - 3407: "Drop_Http_UxDuoFaultDataAfterEnd", - 3408: "Drop_Http_UxDuoFaultPathNotFound", - 3409: "Drop_Http_UxDuoFaultHalfClosedLocal", - 3410: "Drop_Http_UxDuoFaultIncompatibleAuth", - 3411: "Drop_Http_UxDuoFaultDeprecated3", - 3412: "Drop_Http_UxDuoFaultClientCertBlocked", - 3413: "Drop_Http_UxDuoFaultHeaderNameEmpty", - 3414: "Drop_Http_UxDuoFaultIllegalSend", - 3415: "Drop_Http_UxDuoFaultPushUpperAttach", - 3416: "Drop_Http_UxDuoFaultStreamUpperAttach", - 3417: "Drop_Http_UxDuoFaultActiveStreamLimit", - 3418: "Drop_Http_UxDuoFaultAuthorityNotFound", - 3419: "Drop_Http_UxDuoFaultUnexpectedTail", - 3420: "Drop_Http_UxDuoFaultTruncated", - 3421: "Drop_Http_UxDuoFaultResponseHold", - 3422: "Drop_Http_UxDuoFaultRequestChunked", - 3423: "Drop_Http_UxDuoFaultRequestContentLength", - 3424: "Drop_Http_UxDuoFaultResponseChunked", - 3425: "Drop_Http_UxDuoFaultResponseContentLength", - 3426: "Drop_Http_UxDuoFaultResponseTransferEncoding", - 3427: "Drop_Http_UxDuoFaultResponseLine", - 3428: "Drop_Http_UxDuoFaultResponseHeader", - 3429: "Drop_Http_UxDuoFaultConnect", - 3430: "Drop_Http_UxDuoFaultChunkStart", - 3431: "Drop_Http_UxDuoFaultChunkLength", - 3432: "Drop_Http_UxDuoFaultChunkStop", - 3433: "Drop_Http_UxDuoFaultHeadersAfterTrailers", - 3434: "Drop_Http_UxDuoFaultHeadersAfterEnd", - 3435: "Drop_Http_UxDuoFaultEndlessTrailer", - 3436: "Drop_Http_UxDuoFaultTransferEncoding", - 3437: "Drop_Http_UxDuoFaultMultipleTransferCodings", - 3438: "Drop_Http_UxDuoFaultPushBody", - 3439: "Drop_Http_UxDuoFaultStreamAbandoned", - 3440: "Drop_Http_UxDuoFaultMalformedHost", - 3441: "Drop_Http_UxDuoFaultDecompressionOverflow", - 3442: "Drop_Http_UxDuoFaultIllegalHeaderName", - 3443: "Drop_Http_UxDuoFaultIllegalHeaderValue", - 3444: "Drop_Http_UxDuoFaultConnHeaderDisallowed", - 3445: "Drop_Http_UxDuoFaultConnHeaderMalformed", - 3446: "Drop_Http_UxDuoFaultCookieReassembly", - 3447: "Drop_Http_UxDuoFaultStatusHeader", - 3448: "Drop_Http_UxDuoFaultSchemeDisallowed", - 3449: "Drop_Http_UxDuoFaultPathDisallowed", - 3450: "Drop_Http_UxDuoFaultPushHost", - 3451: "Drop_Http_UxDuoFaultGoawayReceived", - 3452: "Drop_Http_UxDuoFaultAbortLegacyApp", - 3453: "Drop_Http_UxDuoFaultUpgradeHeaderDisallowed", - 3454: "Drop_Http_UxDuoFaultResponseUpgradeHeader", - 3455: "Drop_Http_UxDuoFaultKeepAliveHeaderDisallowed", - 3456: "Drop_Http_UxDuoFaultResponseKeepAliveHeader", - 3457: "Drop_Http_UxDuoFaultProxyConnHeaderDisallowed", - 3458: "Drop_Http_UxDuoFaultResponseProxyConnHeader", - 3459: "Drop_Http_UxDuoFaultConnectionGoingAway", - 3460: "Drop_Http_UxDuoFaultTransferEncodingDisallowed", - 3461: "Drop_Http_UxDuoFaultContentLengthDisallowed", - 3462: "Drop_Http_UxDuoFaultTrailerDisallowed", - 3463: "Drop_Http_UxDuoFaultEnd", - - // - // WSK layer drops - // - 3600: "Drop_Http_ReceiveSuppressed", +type DropReasonWin struct { + Reason DropReasonType + String string +} - // - // Http/SSL layer drops - // - 3800: "Drop_Http_Generic", - 3801: "Drop_Http_InvalidParameter", - 3802: "Drop_Http_InsufficientResources", - 3803: "Drop_Http_InvalidHandle", - 3804: "Drop_Http_NotSupported", - 3805: "Drop_Http_BadNetworkPath", - 3806: "Drop_Http_InternalError", - 3807: "Drop_Http_NoSuchPackage", - 3808: "Drop_Http_PrivilegeNotHeld", - 3809: "Drop_Http_CannotImpersonate", - 3810: "Drop_Http_LogonFailure", - 3811: "Drop_Http_NoSuchLogonSession", - 3812: "Drop_Http_AccessDenied", - 3813: "Drop_Http_NoLogonServers", - 3814: "Drop_Http_TimeDifferenceAtDc", - 4000: "Drop_Http_End", +var dropReasons = map[uint32]DropReasonWin{ + 0: {Drop_Unknown, "Drop_Unknown"}, + 1: {Drop_InvalidData, "Drop_InvalidData"}, + 2: {Drop_InvalidPacket, "Drop_InvalidPacket"}, + 3: {Drop_Resources, "Drop_Resources"}, + 4: {Drop_NotReady, "Drop_NotReady"}, + 5: {Drop_Disconnected, "Drop_Disconnected"}, + 6: {Drop_NotAccepted, "Drop_NotAccepted"}, + 7: {Drop_Busy, "Drop_Busy"}, + 8: {Drop_Filtered, "Drop_Filtered"}, + 9: {Drop_FilteredVLAN, "Drop_FilteredVLAN"}, + 10: {Drop_UnauthorizedVLAN, "Drop_UnauthorizedVLAN"}, + 11: {Drop_UnauthorizedMAC, "Drop_UnauthorizedMAC"}, + 12: {Drop_FailedSecurityPolicy, "Drop_FailedSecurityPolicy"}, + 13: {Drop_FailedPvlanSetting, "Drop_FailedPvlanSetting"}, + 14: {Drop_Qos, "Drop_Qos"}, + 15: {Drop_Ipsec, "Drop_Ipsec"}, + 16: {Drop_MacSpoofing, "Drop_MacSpoofing"}, + 17: {Drop_DhcpGuard, "Drop_DhcpGuard"}, + 18: {Drop_RouterGuard, "Drop_RouterGuard"}, + 19: {Drop_BridgeReserved, "Drop_BridgeReserved"}, + 20: {Drop_VirtualSubnetId, "Drop_VirtualSubnetId"}, + 21: {Drop_RequiredExtensionMissing, "Drop_RequiredExtensionMissing"}, + 22: {Drop_InvalidConfig, "Drop_InvalidConfig"}, + 23: {Drop_MTUMismatch, "Drop_MTUMismatch"}, + 24: {Drop_NativeFwdingReq, "Drop_NativeFwdingReq"}, + 25: {Drop_InvalidVlanFormat, "Drop_InvalidVlanFormat"}, + 26: {Drop_InvalidDestMac, "Drop_InvalidDestMac"}, + 27: {Drop_InvalidSourceMac, "Drop_InvalidSourceMac"}, + 28: {Drop_InvalidFirstNBTooSmall, "Drop_InvalidFirstNBTooSmall"}, + 29: {Drop_Wnv, "Drop_Wnv"}, + 30: {Drop_StormLimit, "Drop_StormLimit"}, + 31: {Drop_InjectedIcmp, "Drop_InjectedIcmp"}, + 32: {Drop_FailedDestinationListUpdate, "Drop_FailedDestinationListUpdate"}, + 33: {Drop_NicDisabled, "Drop_NicDisabled"}, + 34: {Drop_FailedPacketFilter, "Drop_FailedPacketFilter"}, + 35: {Drop_SwitchDataFlowDisabled, "Drop_SwitchDataFlowDisabled"}, + 36: {Drop_FilteredIsolationUntagged, "Drop_FilteredIsolationUntagged"}, + 37: {Drop_InvalidPDQueue, "Drop_InvalidPDQueue"}, + 38: {Drop_LowPower, "Drop_LowPower"}, + + // + //Generalerrors + // + 201: {Drop_Pause, "Drop_Pause"}, + 202: {Drop_Reset, "Drop_Reset"}, + 203: {Drop_SendAborted, "Drop_SendAborted"}, + 204: {Drop_ProtocolNotBound, "Drop_ProtocolNotBound"}, + 205: {Drop_Failure, "Drop_Failure"}, + 206: {Drop_InvalidLength, "Drop_InvalidLength"}, + 207: {Drop_HostOutOfMemory, "Drop_HostOutOfMemory"}, + 208: {Drop_FrameTooLong, "Drop_FrameTooLong"}, + 209: {Drop_FrameTooShort, "Drop_FrameTooShort"}, + 210: {Drop_FrameLengthError, "Drop_FrameLengthError"}, + 211: {Drop_CrcError, "Drop_CrcError"}, + 212: {Drop_BadFrameChecksum, "Drop_BadFrameChecksum"}, + 213: {Drop_FcsError, "Drop_FcsError"}, + 214: {Drop_SymbolError, "Drop_SymbolError"}, + 215: {Drop_HeadQTimeout, "Drop_HeadQTimeout"}, + 216: {Drop_StalledDiscard, "Drop_StalledDiscard"}, + 217: {Drop_RxQFull, "Drop_RxQFull"}, + 218: {Drop_PhysLayerError, "Drop_PhysLayerError"}, + 219: {Drop_DmaError, "Drop_DmaError"}, + 220: {Drop_FirmwareError, "Drop_FirmwareError"}, + 221: {Drop_DecryptionFailed, "Drop_DecryptionFailed"}, + 222: {Drop_BadSignature, "Drop_BadSignature"}, + 223: {Drop_CoalescingError, "Drop_CoalescingError"}, + 225: {Drop_VlanSpoofing, "Drop_VlanSpoofing"}, + 226: {Drop_UnallowedEtherType, "Drop_UnallowedEtherType"}, + 227: {Drop_VportDown, "Drop_VportDown"}, + 228: {Drop_SteeringMismatch, "Drop_SteeringMismatch"}, + + // + //NetVscerrors + // + 401: {Drop_MicroportError, "Drop_MicroportError"}, + 402: {Drop_VfNotReady, "Drop_VfNotReady"}, + 403: {Drop_MicroportNotReady, "Drop_MicroportNotReady"}, + 404: {Drop_VMBusError, "Drop_VMBusError"}, + + // + //TcpipFLerrors + // + 601: {Drop_FL_LoopbackPacket, "Drop_FL_LoopbackPacket"}, + 602: {Drop_FL_InvalidSnapHeader, "Drop_FL_InvalidSnapHeader"}, + 603: {Drop_FL_InvalidEthernetType, "Drop_FL_InvalidEthernetType"}, + 604: {Drop_FL_InvalidPacketLength, "Drop_FL_InvalidPacketLength"}, + 605: {Drop_FL_HeaderNotContiguous, "Drop_FL_HeaderNotContiguous"}, + 606: {Drop_FL_InvalidDestinationType, "Drop_FL_InvalidDestinationType"}, + 607: {Drop_FL_InterfaceNotReady, "Drop_FL_InterfaceNotReady"}, + 608: {Drop_FL_ProviderNotReady, "Drop_FL_ProviderNotReady"}, + 609: {Drop_FL_InvalidLsoInfo, "Drop_FL_InvalidLsoInfo"}, + 610: {Drop_FL_InvalidUsoInfo, "Drop_FL_InvalidUsoInfo"}, + 611: {Drop_FL_InvalidMedium, "Drop_FL_InvalidMedium"}, + 612: {Drop_FL_InvalidArpHeader, "Drop_FL_InvalidArpHeader"}, + 613: {Drop_FL_NoClientInterface, "Drop_FL_NoClientInterface"}, + 614: {Drop_FL_TooManyNetBuffers, "Drop_FL_TooManyNetBuffers"}, + 615: {Drop_FL_FlsNpiClientDrop, "Drop_FL_FlsNpiClientDrop"}, + + // + //VFPerrors + // + 701: {Drop_ArpGuard, "Drop_ArpGuard"}, + 702: {Drop_ArpLimiter, "Drop_ArpLimiter"}, + 703: {Drop_DhcpLimiter, "Drop_DhcpLimiter"}, + 704: {Drop_BlockBroadcast, "Drop_BlockBroadcast"}, + 705: {Drop_BlockNonIp, "Drop_BlockNonIp"}, + 706: {Drop_ArpFilter, "Drop_ArpFilter"}, + 707: {Drop_Ipv4Guard, "Drop_Ipv4Guard"}, + 708: {Drop_Ipv6Guard, "Drop_Ipv6Guard"}, + 709: {Drop_MacGuard, "Drop_MacGuard"}, + 710: {Drop_BroadcastNoDestinations, "Drop_BroadcastNoDestinations"}, + 711: {Drop_UnicastNoDestination, "Drop_UnicastNoDestination"}, + 712: {Drop_UnicastPortNotReady, "Drop_UnicastPortNotReady"}, + 713: {Drop_SwitchCallbackFailed, "Drop_SwitchCallbackFailed"}, + 714: {Drop_Icmpv6Limiter, "Drop_Icmpv6Limiter"}, + 715: {Drop_Intercept, "Drop_Intercept"}, + 716: {Drop_InterceptBlock, "Drop_InterceptBlock"}, + 717: {Drop_NDPGuard, "Drop_NDPGuard"}, + 718: {Drop_PortBlocked, "Drop_PortBlocked"}, + 719: {Drop_NicSuspended, "Drop_NicSuspended"}, + + // + //TcpipNLerrors + // + 901: {Drop_NL_BadSourceAddress, "Drop_NL_BadSourceAddress"}, + 902: {Drop_NL_NotLocallyDestined, "Drop_NL_NotLocallyDestined"}, + 903: {Drop_NL_ProtocolUnreachable, "Drop_NL_ProtocolUnreachable"}, + 904: {Drop_NL_PortUnreachable, "Drop_NL_PortUnreachable"}, + 905: {Drop_NL_BadLength, "Drop_NL_BadLength"}, + 906: {Drop_NL_MalformedHeader, "Drop_NL_MalformedHeader"}, + 907: {Drop_NL_NoRoute, "Drop_NL_NoRoute"}, + 908: {Drop_NL_BeyondScope, "Drop_NL_BeyondScope"}, + 909: {Drop_NL_InspectionDrop, "Drop_NL_InspectionDrop"}, + 910: {Drop_NL_TooManyDecapsulations, "Drop_NL_TooManyDecapsulations"}, + 911: {Drop_NL_AdministrativelyProhibited, "Drop_NL_AdministrativelyProhibited"}, + 912: {Drop_NL_BadChecksum, "Drop_NL_BadChecksum"}, + 913: {Drop_NL_ReceivePathMax, "Drop_NL_ReceivePathMax"}, + 914: {Drop_NL_HopLimitExceeded, "Drop_NL_HopLimitExceeded"}, + 915: {Drop_NL_AddressUnreachable, "Drop_NL_AddressUnreachable"}, + 916: {Drop_NL_RscPacket, "Drop_NL_RscPacket"}, + 917: {Drop_NL_ForwardPathMax, "Drop_NL_ForwardPathMax"}, + 918: {Drop_NL_ArbitrationUnhandled, "Drop_NL_ArbitrationUnhandled"}, + 919: {Drop_NL_InspectionAbsorb, "Drop_NL_InspectionAbsorb"}, + 920: {Drop_NL_DontFragmentMtuExceeded, "Drop_NL_DontFragmentMtuExceeded"}, + 921: {Drop_NL_BufferLengthExceeded, "Drop_NL_BufferLengthExceeded"}, + 922: {Drop_NL_AddressResolutionTimeout, "Drop_NL_AddressResolutionTimeout"}, + 923: {Drop_NL_AddressResolutionFailure, "Drop_NL_AddressResolutionFailure"}, + 924: {Drop_NL_IpsecFailure, "Drop_NL_IpsecFailure"}, + 925: {Drop_NL_ExtensionHeadersFailure, "Drop_NL_ExtensionHeadersFailure"}, + 926: {Drop_NL_IpsnpiClientDrop, "Drop_NL_IpsnpiClientDrop"}, + 927: {Drop_NL_UnsupportedOffload, "Drop_NL_UnsupportedOffload"}, + 928: {Drop_NL_RoutingFailure, "Drop_NL_RoutingFailure"}, + 929: {Drop_NL_AncillaryDataFailure, "Drop_NL_AncillaryDataFailure"}, + 930: {Drop_NL_RawDataFailure, "Drop_NL_RawDataFailure"}, + 931: {Drop_NL_SessionStateFailure, "Drop_NL_SessionStateFailure"}, + 932: {Drop_NL_IpsnpiModifiedButNotForwarded, "Drop_NL_IpsnpiModifiedButNotForwarded"}, + 933: {Drop_NL_IpsnpiNoNextHop, "Drop_NL_IpsnpiNoNextHop"}, + 934: {Drop_NL_IpsnpiNoCompartment, "Drop_NL_IpsnpiNoCompartment"}, + 935: {Drop_NL_IpsnpiNoInterface, "Drop_NL_IpsnpiNoInterface"}, + 936: {Drop_NL_IpsnpiNoSubInterface, "Drop_NL_IpsnpiNoSubInterface"}, + 937: {Drop_NL_IpsnpiInterfaceDisabled, "Drop_NL_IpsnpiInterfaceDisabled"}, + 938: {Drop_NL_IpsnpiSegmentationFailed, "Drop_NL_IpsnpiSegmentationFailed"}, + 939: {Drop_NL_IpsnpiNoEthernetHeader, "Drop_NL_IpsnpiNoEthernetHeader"}, + 940: {Drop_NL_IpsnpiUnexpectedFragment, "Drop_NL_IpsnpiUnexpectedFragment"}, + 941: {Drop_NL_IpsnpiUnsupportedInterfaceType, "Drop_NL_IpsnpiUnsupportedInterfaceType"}, + 942: {Drop_NL_IpsnpiInvalidLsoInfo, "Drop_NL_IpsnpiInvalidLsoInfo"}, + 943: {Drop_NL_IpsnpiInvalidUsoInfo, "Drop_NL_IpsnpiInvalidUsoInfo"}, + 944: {Drop_NL_InternalError, "Drop_NL_InternalError"}, + 945: {Drop_NL_AdministrativelyConfigured, "Drop_NL_AdministrativelyConfigured"}, + 946: {Drop_NL_BadOption, "Drop_NL_BadOption"}, + 947: {Drop_NL_LoopbackDisallowed, "Drop_NL_LoopbackDisallowed"}, + 948: {Drop_NL_SmallerScope, "Drop_NL_SmallerScope"}, + 949: {Drop_NL_QueueFull, "Drop_NL_QueueFull"}, + 950: {Drop_NL_InterfaceDisabled, "Drop_NL_InterfaceDisabled"}, + + 951: {Drop_NL_IcmpGeneric, "Drop_NL_IcmpGeneric"}, + 952: {Drop_NL_IcmpTruncatedHeader, "Drop_NL_IcmpTruncatedHeader"}, + 953: {Drop_NL_IcmpInvalidChecksum, "Drop_NL_IcmpInvalidChecksum"}, + 954: {Drop_NL_IcmpInspection, "Drop_NL_IcmpInspection"}, + 955: {Drop_NL_IcmpNeighborDiscoveryLoopback, "Drop_NL_IcmpNeighborDiscoveryLoopback"}, + 956: {Drop_NL_IcmpUnknownType, "Drop_NL_IcmpUnknownType"}, + 957: {Drop_NL_IcmpTruncatedIpHeader, "Drop_NL_IcmpTruncatedIpHeader"}, + 958: {Drop_NL_IcmpOversizedIpHeader, "Drop_NL_IcmpOversizedIpHeader"}, + 959: {Drop_NL_IcmpNoHandler, "Drop_NL_IcmpNoHandler"}, + 960: {Drop_NL_IcmpRespondingToError, "Drop_NL_IcmpRespondingToError"}, + 961: {Drop_NL_IcmpInvalidSource, "Drop_NL_IcmpInvalidSource"}, + 962: {Drop_NL_IcmpInterfaceRateLimit, "Drop_NL_IcmpInterfaceRateLimit"}, + 963: {Drop_NL_IcmpPathRateLimit, "Drop_NL_IcmpPathRateLimit"}, + 964: {Drop_NL_IcmpNoRoute, "Drop_NL_IcmpNoRoute"}, + 965: {Drop_NL_IcmpMatchingRequestNotFound, "Drop_NL_IcmpMatchingRequestNotFound"}, + 966: {Drop_NL_IcmpBufferTooSmall, "Drop_NL_IcmpBufferTooSmall"}, + 967: {Drop_NL_IcmpAncillaryDataQuery, "Drop_NL_IcmpAncillaryDataQuery"}, + 968: {Drop_NL_IcmpIncorrectHopLimit, "Drop_NL_IcmpIncorrectHopLimit"}, + 969: {Drop_NL_IcmpUnknownCode, "Drop_NL_IcmpUnknownCode"}, + 970: {Drop_NL_IcmpSourceNotLinkLocal, "Drop_NL_IcmpSourceNotLinkLocal"}, + 971: {Drop_NL_IcmpTruncatedNdHeader, "Drop_NL_IcmpTruncatedNdHeader"}, + 972: {Drop_NL_IcmpInvalidNdOptSourceLinkAddr, "Drop_NL_IcmpInvalidNdOptSourceLinkAddr"}, + 973: {Drop_NL_IcmpInvalidNdOptMtu, "Drop_NL_IcmpInvalidNdOptMtu"}, + 974: {Drop_NL_IcmpInvalidNdOptPrefixInformation, "Drop_NL_IcmpInvalidNdOptPrefixInformation"}, + 975: {Drop_NL_IcmpInvalidNdOptRouteInformation, "Drop_NL_IcmpInvalidNdOptRouteInformation"}, + 976: {Drop_NL_IcmpInvalidNdOptRdnss, "Drop_NL_IcmpInvalidNdOptRdnss"}, + 977: {Drop_NL_IcmpInvalidNdOptDnssl, "Drop_NL_IcmpInvalidNdOptDnssl"}, + 978: {Drop_NL_IcmpPacketParsingFailure, "Drop_NL_IcmpPacketParsingFailure"}, + 979: {Drop_NL_IcmpDisallowed, "Drop_NL_IcmpDisallowed"}, + 980: {Drop_NL_IcmpInvalidRouterAdvertisement, "Drop_NL_IcmpInvalidRouterAdvertisement"}, + 981: {Drop_NL_IcmpSourceFromDifferentLink, "Drop_NL_IcmpSourceFromDifferentLink"}, + 982: {Drop_NL_IcmpInvalidRedirectDestinationOrTarget, "Drop_NL_IcmpInvalidRedirectDestinationOrTarget"}, + 983: {Drop_NL_IcmpInvalidNdTarget, "Drop_NL_IcmpInvalidNdTarget"}, + 984: {Drop_NL_IcmpNaMulticastAndSolicited, "Drop_NL_IcmpNaMulticastAndSolicited"}, + 985: {Drop_NL_IcmpNdLinkLayerAddressIsLocal, "Drop_NL_IcmpNdLinkLayerAddressIsLocal"}, + 986: {Drop_NL_IcmpDuplicateEchoRequest, "Drop_NL_IcmpDuplicateEchoRequest"}, + 987: {Drop_NL_IcmpNotAPotentialRouter, "Drop_NL_IcmpNotAPotentialRouter"}, + 988: {Drop_NL_IcmpInvalidMldQuery, "Drop_NL_IcmpInvalidMldQuery"}, + 989: {Drop_NL_IcmpInvalidMldReport, "Drop_NL_IcmpInvalidMldReport"}, + 990: {Drop_NL_IcmpLocallySourcedMldReport, "Drop_NL_IcmpLocallySourcedMldReport"}, + 991: {Drop_NL_IcmpNotLocallyDestined, "Drop_NL_IcmpNotLocallyDestined"}, + + 992: {Drop_NL_ArpInvalidSource, "Drop_NL_ArpInvalidSource"}, + 993: {Drop_NL_ArpInvalidTarget, "Drop_NL_ArpInvalidTarget"}, + 994: {Drop_NL_ArpDlSourceIsLocal, "Drop_NL_ArpDlSourceIsLocal"}, + 995: {Drop_NL_ArpNotLocallyDestined, "Drop_NL_ArpNotLocallyDestined"}, + + 996: {Drop_NL_NlClientDiscard, "Drop_NL_NlClientDiscard"}, + + 997: {Drop_NL_IpsnpiUroSegmentSizeExceedsMtu, "Drop_NL_IpsnpiUroSegmentSizeExceedsMtu"}, + + 998: {Drop_NL_IcmpFragmentedPacket, "Drop_NL_IcmpFragmentedPacket"}, + 999: {Drop_NL_FirstFragmentIncomplete, "Drop_NL_FirstFragmentIncomplete"}, + 1000: {Drop_NL_SourceViolation, "Drop_NL_SourceViolation"}, + 1001: {Drop_NL_IcmpJumbogram, "Drop_NL_IcmpJumbogram"}, + 1002: {Drop_NL_SwUsoFailure, "Drop_NL_SwUsoFailure"}, + + // + //INETdiscardreasons + // + 1200: {Drop_INET_SourceUnspecified, "Drop_INET_SourceUnspecified"}, + 1201: {Drop_INET_DestinationMulticast, "Drop_INET_DestinationMulticast"}, + 1202: {Drop_INET_HeaderInvalid, "Drop_INET_HeaderInvalid"}, + 1203: {Drop_INET_ChecksumInvalid, "Drop_INET_ChecksumInvalid"}, + 1204: {Drop_INET_EndpointNotFound, "Drop_INET_EndpointNotFound"}, + 1205: {Drop_INET_ConnectedPath, "Drop_INET_ConnectedPath"}, + 1206: {Drop_INET_SessionState, "Drop_INET_SessionState"}, + 1207: {Drop_INET_ReceiveInspection, "Drop_INET_ReceiveInspection"}, + 1208: {Drop_INET_AckInvalid, "Drop_INET_AckInvalid"}, + 1209: {Drop_INET_ExpectedSyn, "Drop_INET_ExpectedSyn"}, + 1210: {Drop_INET_Rst, "Drop_INET_Rst"}, + 1211: {Drop_INET_SynRcvdSyn, "Drop_INET_SynRcvdSyn"}, + 1212: {Drop_INET_SimultaneousConnect, "Drop_INET_SimultaneousConnect"}, + 1213: {Drop_INET_PawsFailed, "Drop_INET_PawsFailed"}, + 1214: {Drop_INET_LandAttack, "Drop_INET_LandAttack"}, + 1215: {Drop_INET_MissedReset, "Drop_INET_MissedReset"}, + 1216: {Drop_INET_OutsideWindow, "Drop_INET_OutsideWindow"}, + 1217: {Drop_INET_DuplicateSegment, "Drop_INET_DuplicateSegment"}, + 1218: {Drop_INET_ClosedWindow, "Drop_INET_ClosedWindow"}, + 1219: {Drop_INET_TcbRemoved, "Drop_INET_TcbRemoved"}, + 1220: {Drop_INET_FinWait2, "Drop_INET_FinWait2"}, + 1221: {Drop_INET_ReassemblyConflict, "Drop_INET_ReassemblyConflict"}, + 1222: {Drop_INET_FinReceived, "Drop_INET_FinReceived"}, + 1223: {Drop_INET_ListenerInvalidFlags, "Drop_INET_ListenerInvalidFlags"}, + 1224: {Drop_INET_TcbNotInTcbTable, "Drop_INET_TcbNotInTcbTable"}, + 1225: {Drop_INET_TimeWaitTcbReceivedRstOutsideWindow, "Drop_INET_TimeWaitTcbReceivedRstOutsideWindow"}, + 1226: {Drop_INET_TimeWaitTcbSynAndOtherFlags, "Drop_INET_TimeWaitTcbSynAndOtherFlags"}, + 1227: {Drop_INET_TimeWaitTcb, "Drop_INET_TimeWaitTcb"}, + 1228: {Drop_INET_SynAckWithFastopenCookieRequest, "Drop_INET_SynAckWithFastopenCookieRequest"}, + 1229: {Drop_INET_PauseAccept, "Drop_INET_PauseAccept"}, + 1230: {Drop_INET_SynAttack, "Drop_INET_SynAttack"}, + 1231: {Drop_INET_AcceptInspection, "Drop_INET_AcceptInspection"}, + 1232: {Drop_INET_AcceptRedirection, "Drop_INET_AcceptRedirection"}, + + // + //SlbmuxError + // + 1301: {Drop_SlbMux_ParsingFailure, "Drop_SlbMux_ParsingFailure"}, + 1302: {Drop_SlbMux_FirstFragmentMiss, "Drop_SlbMux_FirstFragmentMiss"}, + 1303: {Drop_SlbMux_ICMPErrorPayloadValidationFailure, "Drop_SlbMux_ICMPErrorPayloadValidationFailure"}, + 1304: {Drop_SlbMux_ICMPErrorPacketMatchNoSession, "Drop_SlbMux_ICMPErrorPacketMatchNoSession"}, + 1305: {Drop_SlbMux_ExternalHairpinNexthopLookupFailure, "Drop_SlbMux_ExternalHairpinNexthopLookupFailure"}, + 1306: {Drop_SlbMux_NoMatchingStaticMapping, "Drop_SlbMux_NoMatchingStaticMapping"}, + 1307: {Drop_SlbMux_NexthopReferenceFailure, "Drop_SlbMux_NexthopReferenceFailure"}, + 1308: {Drop_SlbMux_CloningFailure, "Drop_SlbMux_CloningFailure"}, + 1309: {Drop_SlbMux_TranslationFailure, "Drop_SlbMux_TranslationFailure"}, + 1310: {Drop_SlbMux_HopLimitExceeded, "Drop_SlbMux_HopLimitExceeded"}, + 1311: {Drop_SlbMux_PacketBiggerThanMTU, "Drop_SlbMux_PacketBiggerThanMTU"}, + 1312: {Drop_SlbMux_UnexpectedRouteLookupFailure, "Drop_SlbMux_UnexpectedRouteLookupFailure"}, + 1313: {Drop_SlbMux_NoRoute, "Drop_SlbMux_NoRoute"}, + 1314: {Drop_SlbMux_SessionCreationFailure, "Drop_SlbMux_SessionCreationFailure"}, + 1315: {Drop_SlbMux_NexthopNotOverExternalInterface, "Drop_SlbMux_NexthopNotOverExternalInterface"}, + 1316: {Drop_SlbMux_NexthopExternalInterfaceMissNATInstance, "Drop_SlbMux_NexthopExternalInterfaceMissNATInstance"}, + 1317: {Drop_SlbMux_NATItselfCantBeInternalNexthop, "Drop_SlbMux_NATItselfCantBeInternalNexthop"}, + 1318: {Drop_SlbMux_PacketRoutableInItsArrivalCompartment, "Drop_SlbMux_PacketRoutableInItsArrivalCompartment"}, + 1319: {Drop_SlbMux_PacketTransportProtocolNotSupported, "Drop_SlbMux_PacketTransportProtocolNotSupported"}, + 1320: {Drop_SlbMux_PacketIsDestinedLocally, "Drop_SlbMux_PacketIsDestinedLocally"}, + 1321: {Drop_SlbMux_PacketDestinationIPandPortNotSubjectToNAT, "Drop_SlbMux_PacketDestinationIPandPortNotSubjectToNAT"}, + 1322: {Drop_SlbMux_MuxReject, "Drop_SlbMux_MuxReject"}, + 1323: {Drop_SlbMux_DipLookupFailure, "Drop_SlbMux_DipLookupFailure"}, + 1324: {Drop_SlbMux_MuxEncapsulationFailure, "Drop_SlbMux_MuxEncapsulationFailure"}, + 1325: {Drop_SlbMux_InvalidDiagPacketEncapType, "Drop_SlbMux_InvalidDiagPacketEncapType"}, + 1326: {Drop_SlbMux_DiagPacketIsRedirect, "Drop_SlbMux_DiagPacketIsRedirect"}, + 1327: {Drop_SlbMux_UnableToHandleRedirect, "Drop_SlbMux_UnableToHandleRedirect"}, + + // + //IpsecErrors + // + 1401: {Drop_Ipsec_BadSpi, "Drop_Ipsec_BadSpi"}, + 1402: {Drop_Ipsec_SALifetimeExpired, "Drop_Ipsec_SALifetimeExpired"}, + 1403: {Drop_Ipsec_WrongSA, "Drop_Ipsec_WrongSA"}, + 1404: {Drop_Ipsec_ReplayCheckFailed, "Drop_Ipsec_ReplayCheckFailed"}, + 1405: {Drop_Ipsec_InvalidPacket, "Drop_Ipsec_InvalidPacket"}, + 1406: {Drop_Ipsec_IntegrityCheckFailed, "Drop_Ipsec_IntegrityCheckFailed"}, + 1407: {Drop_Ipsec_ClearTextDrop, "Drop_Ipsec_ClearTextDrop"}, + 1408: {Drop_Ipsec_AuthFirewallDrop, "Drop_Ipsec_AuthFirewallDrop"}, + 1409: {Drop_Ipsec_ThrottleDrop, "Drop_Ipsec_ThrottleDrop"}, + 1410: {Drop_Ipsec_Dosp_Block, "Drop_Ipsec_Dosp_Block"}, + 1411: {Drop_Ipsec_Dosp_ReceivedMulticast, "Drop_Ipsec_Dosp_ReceivedMulticast"}, + 1412: {Drop_Ipsec_Dosp_InvalidPacket, "Drop_Ipsec_Dosp_InvalidPacket"}, + 1413: {Drop_Ipsec_Dosp_StateLookupFailed, "Drop_Ipsec_Dosp_StateLookupFailed"}, + 1414: {Drop_Ipsec_Dosp_MaxEntries, "Drop_Ipsec_Dosp_MaxEntries"}, + 1415: {Drop_Ipsec_Dosp_KeymodNotAllowed, "Drop_Ipsec_Dosp_KeymodNotAllowed"}, + 1416: {Drop_Ipsec_Dosp_MaxPerIpRateLimitQueues, "Drop_Ipsec_Dosp_MaxPerIpRateLimitQueues"}, + 1417: {Drop_Ipsec_NoMemory, "Drop_Ipsec_NoMemory"}, + 1418: {Drop_Ipsec_Unsuccessful, "Drop_Ipsec_Unsuccessful"}, + + // + //NetCxDropReasons + // + 1501: {Drop_NetCx_NetPacketLayoutParseFailure, "Drop_NetCx_NetPacketLayoutParseFailure"}, + 1502: {Drop_NetCx_SoftwareChecksumFailure, "Drop_NetCx_SoftwareChecksumFailure"}, + 1503: {Drop_NetCx_NicQueueStop, "Drop_NetCx_NicQueueStop"}, + 1504: {Drop_NetCx_InvalidNetBufferLength, "Drop_NetCx_InvalidNetBufferLength"}, + 1505: {Drop_NetCx_LSOFailure, "Drop_NetCx_LSOFailure"}, + 1506: {Drop_NetCx_USOFailure, "Drop_NetCx_USOFailure"}, + 1507: {Drop_NetCx_BufferBounceFailureAndPacketIgnore, "Drop_NetCx_BufferBounceFailureAndPacketIgnore"}, + + // + //Httperrors3000-4000. + //Thesemustbeinsyncwithcmd\resource.h + // + 3000: {Drop_Http_Begin, "Drop_Http_Begin"}, + + // + //UlErrors + // + 3001: {Drop_Http_UlError_Begin, "Drop_Http_UlError_Begin"}, + 3002: {Drop_Http_UlError, "Drop_Http_UlError"}, + 3003: {Drop_Http_UlErrorVerb, "Drop_Http_UlErrorVerb"}, + 3004: {Drop_Http_UlErrorUrl, "Drop_Http_UlErrorUrl"}, + 3005: {Drop_Http_UlErrorHeader, "Drop_Http_UlErrorHeader"}, + 3006: {Drop_Http_UlErrorHost, "Drop_Http_UlErrorHost"}, + 3007: {Drop_Http_UlErrorNum, "Drop_Http_UlErrorNum"}, + 3008: {Drop_Http_UlErrorFieldLength, "Drop_Http_UlErrorFieldLength"}, + 3009: {Drop_Http_UlErrorRequestLength, "Drop_Http_UlErrorRequestLength"}, + 3010: {Drop_Http_UlErrorUnauthorized, "Drop_Http_UlErrorUnauthorized"}, + + 3011: {Drop_Http_UlErrorForbiddenUrl, "Drop_Http_UlErrorForbiddenUrl"}, + 3012: {Drop_Http_UlErrorNotFound, "Drop_Http_UlErrorNotFound"}, + 3013: {Drop_Http_UlErrorContentLength, "Drop_Http_UlErrorContentLength"}, + 3014: {Drop_Http_UlErrorPreconditionFailed, "Drop_Http_UlErrorPreconditionFailed"}, + 3015: {Drop_Http_UlErrorEntityTooLarge, "Drop_Http_UlErrorEntityTooLarge"}, + 3016: {Drop_Http_UlErrorUrlLength, "Drop_Http_UlErrorUrlLength"}, + 3017: {Drop_Http_UlErrorRangeNotSatisfiable, "Drop_Http_UlErrorRangeNotSatisfiable"}, + 3018: {Drop_Http_UlErrorMisdirectedRequest, "Drop_Http_UlErrorMisdirectedRequest"}, + + 3019: {Drop_Http_UlErrorInternalServer, "Drop_Http_UlErrorInternalServer"}, + 3020: {Drop_Http_UlErrorNotImplemented, "Drop_Http_UlErrorNotImplemented"}, + 3021: {Drop_Http_UlErrorUnavailable, "Drop_Http_UlErrorUnavailable"}, + 3022: {Drop_Http_UlErrorConnectionLimit, "Drop_Http_UlErrorConnectionLimit"}, + 3023: {Drop_Http_UlErrorRapidFailProtection, "Drop_Http_UlErrorRapidFailProtection"}, + 3024: {Drop_Http_UlErrorRequestQueueFull, "Drop_Http_UlErrorRequestQueueFull"}, + 3025: {Drop_Http_UlErrorDisabledByAdmin, "Drop_Http_UlErrorDisabledByAdmin"}, + 3026: {Drop_Http_UlErrorDisabledByApp, "Drop_Http_UlErrorDisabledByApp"}, + 3027: {Drop_Http_UlErrorJobObjectFired, "Drop_Http_UlErrorJobObjectFired"}, + 3028: {Drop_Http_UlErrorAppPoolBusy, "Drop_Http_UlErrorAppPoolBusy"}, + + 3029: {Drop_Http_UlErrorVersion, "Drop_Http_UlErrorVersion"}, + 3030: {Drop_Http_UlError_End, "Drop_Http_UlError_End"}, + + // + //Stream-specificfaultcodes. + // + + 3400: {Drop_Http_UxDuoFaultBegin, "Drop_Http_UxDuoFaultBegin"}, + 3401: {Drop_Http_UxDuoFaultUserAbort, "Drop_Http_UxDuoFaultUserAbort"}, + 3402: {Drop_Http_UxDuoFaultCollection, "Drop_Http_UxDuoFaultCollection"}, + 3403: {Drop_Http_UxDuoFaultClientResetStream, "Drop_Http_UxDuoFaultClientResetStream"}, + 3404: {Drop_Http_UxDuoFaultMethodNotFound, "Drop_Http_UxDuoFaultMethodNotFound"}, + 3405: {Drop_Http_UxDuoFaultSchemeMismatch, "Drop_Http_UxDuoFaultSchemeMismatch"}, + 3406: {Drop_Http_UxDuoFaultSchemeNotFound, "Drop_Http_UxDuoFaultSchemeNotFound"}, + 3407: {Drop_Http_UxDuoFaultDataAfterEnd, "Drop_Http_UxDuoFaultDataAfterEnd"}, + 3408: {Drop_Http_UxDuoFaultPathNotFound, "Drop_Http_UxDuoFaultPathNotFound"}, + 3409: {Drop_Http_UxDuoFaultHalfClosedLocal, "Drop_Http_UxDuoFaultHalfClosedLocal"}, + 3410: {Drop_Http_UxDuoFaultIncompatibleAuth, "Drop_Http_UxDuoFaultIncompatibleAuth"}, + 3411: {Drop_Http_UxDuoFaultDeprecated3, "Drop_Http_UxDuoFaultDeprecated3"}, + 3412: {Drop_Http_UxDuoFaultClientCertBlocked, "Drop_Http_UxDuoFaultClientCertBlocked"}, + 3413: {Drop_Http_UxDuoFaultHeaderNameEmpty, "Drop_Http_UxDuoFaultHeaderNameEmpty"}, + 3414: {Drop_Http_UxDuoFaultIllegalSend, "Drop_Http_UxDuoFaultIllegalSend"}, + 3415: {Drop_Http_UxDuoFaultPushUpperAttach, "Drop_Http_UxDuoFaultPushUpperAttach"}, + 3416: {Drop_Http_UxDuoFaultStreamUpperAttach, "Drop_Http_UxDuoFaultStreamUpperAttach"}, + 3417: {Drop_Http_UxDuoFaultActiveStreamLimit, "Drop_Http_UxDuoFaultActiveStreamLimit"}, + 3418: {Drop_Http_UxDuoFaultAuthorityNotFound, "Drop_Http_UxDuoFaultAuthorityNotFound"}, + 3419: {Drop_Http_UxDuoFaultUnexpectedTail, "Drop_Http_UxDuoFaultUnexpectedTail"}, + 3420: {Drop_Http_UxDuoFaultTruncated, "Drop_Http_UxDuoFaultTruncated"}, + 3421: {Drop_Http_UxDuoFaultResponseHold, "Drop_Http_UxDuoFaultResponseHold"}, + 3422: {Drop_Http_UxDuoFaultRequestChunked, "Drop_Http_UxDuoFaultRequestChunked"}, + 3423: {Drop_Http_UxDuoFaultRequestContentLength, "Drop_Http_UxDuoFaultRequestContentLength"}, + 3424: {Drop_Http_UxDuoFaultResponseChunked, "Drop_Http_UxDuoFaultResponseChunked"}, + 3425: {Drop_Http_UxDuoFaultResponseContentLength, "Drop_Http_UxDuoFaultResponseContentLength"}, + 3426: {Drop_Http_UxDuoFaultResponseTransferEncoding, "Drop_Http_UxDuoFaultResponseTransferEncoding"}, + 3427: {Drop_Http_UxDuoFaultResponseLine, "Drop_Http_UxDuoFaultResponseLine"}, + 3428: {Drop_Http_UxDuoFaultResponseHeader, "Drop_Http_UxDuoFaultResponseHeader"}, + 3429: {Drop_Http_UxDuoFaultConnect, "Drop_Http_UxDuoFaultConnect"}, + 3430: {Drop_Http_UxDuoFaultChunkStart, "Drop_Http_UxDuoFaultChunkStart"}, + 3431: {Drop_Http_UxDuoFaultChunkLength, "Drop_Http_UxDuoFaultChunkLength"}, + 3432: {Drop_Http_UxDuoFaultChunkStop, "Drop_Http_UxDuoFaultChunkStop"}, + 3433: {Drop_Http_UxDuoFaultHeadersAfterTrailers, "Drop_Http_UxDuoFaultHeadersAfterTrailers"}, + 3434: {Drop_Http_UxDuoFaultHeadersAfterEnd, "Drop_Http_UxDuoFaultHeadersAfterEnd"}, + 3435: {Drop_Http_UxDuoFaultEndlessTrailer, "Drop_Http_UxDuoFaultEndlessTrailer"}, + 3436: {Drop_Http_UxDuoFaultTransferEncoding, "Drop_Http_UxDuoFaultTransferEncoding"}, + 3437: {Drop_Http_UxDuoFaultMultipleTransferCodings, "Drop_Http_UxDuoFaultMultipleTransferCodings"}, + 3438: {Drop_Http_UxDuoFaultPushBody, "Drop_Http_UxDuoFaultPushBody"}, + 3439: {Drop_Http_UxDuoFaultStreamAbandoned, "Drop_Http_UxDuoFaultStreamAbandoned"}, + 3440: {Drop_Http_UxDuoFaultMalformedHost, "Drop_Http_UxDuoFaultMalformedHost"}, + 3441: {Drop_Http_UxDuoFaultDecompressionOverflow, "Drop_Http_UxDuoFaultDecompressionOverflow"}, + 3442: {Drop_Http_UxDuoFaultIllegalHeaderName, "Drop_Http_UxDuoFaultIllegalHeaderName"}, + 3443: {Drop_Http_UxDuoFaultIllegalHeaderValue, "Drop_Http_UxDuoFaultIllegalHeaderValue"}, + 3444: {Drop_Http_UxDuoFaultConnHeaderDisallowed, "Drop_Http_UxDuoFaultConnHeaderDisallowed"}, + 3445: {Drop_Http_UxDuoFaultConnHeaderMalformed, "Drop_Http_UxDuoFaultConnHeaderMalformed"}, + 3446: {Drop_Http_UxDuoFaultCookieReassembly, "Drop_Http_UxDuoFaultCookieReassembly"}, + 3447: {Drop_Http_UxDuoFaultStatusHeader, "Drop_Http_UxDuoFaultStatusHeader"}, + 3448: {Drop_Http_UxDuoFaultSchemeDisallowed, "Drop_Http_UxDuoFaultSchemeDisallowed"}, + 3449: {Drop_Http_UxDuoFaultPathDisallowed, "Drop_Http_UxDuoFaultPathDisallowed"}, + 3450: {Drop_Http_UxDuoFaultPushHost, "Drop_Http_UxDuoFaultPushHost"}, + 3451: {Drop_Http_UxDuoFaultGoawayReceived, "Drop_Http_UxDuoFaultGoawayReceived"}, + 3452: {Drop_Http_UxDuoFaultAbortLegacyApp, "Drop_Http_UxDuoFaultAbortLegacyApp"}, + 3453: {Drop_Http_UxDuoFaultUpgradeHeaderDisallowed, "Drop_Http_UxDuoFaultUpgradeHeaderDisallowed"}, + 3454: {Drop_Http_UxDuoFaultResponseUpgradeHeader, "Drop_Http_UxDuoFaultResponseUpgradeHeader"}, + 3455: {Drop_Http_UxDuoFaultKeepAliveHeaderDisallowed, "Drop_Http_UxDuoFaultKeepAliveHeaderDisallowed"}, + 3456: {Drop_Http_UxDuoFaultResponseKeepAliveHeader, "Drop_Http_UxDuoFaultResponseKeepAliveHeader"}, + 3457: {Drop_Http_UxDuoFaultProxyConnHeaderDisallowed, "Drop_Http_UxDuoFaultProxyConnHeaderDisallowed"}, + 3458: {Drop_Http_UxDuoFaultResponseProxyConnHeader, "Drop_Http_UxDuoFaultResponseProxyConnHeader"}, + 3459: {Drop_Http_UxDuoFaultConnectionGoingAway, "Drop_Http_UxDuoFaultConnectionGoingAway"}, + 3460: {Drop_Http_UxDuoFaultTransferEncodingDisallowed, "Drop_Http_UxDuoFaultTransferEncodingDisallowed"}, + 3461: {Drop_Http_UxDuoFaultContentLengthDisallowed, "Drop_Http_UxDuoFaultContentLengthDisallowed"}, + 3462: {Drop_Http_UxDuoFaultTrailerDisallowed, "Drop_Http_UxDuoFaultTrailerDisallowed"}, + 3463: {Drop_Http_UxDuoFaultEnd, "Drop_Http_UxDuoFaultEnd"}, + + // + //WSKlayerdrops + // + 3600: {Drop_Http_ReceiveSuppressed, "Drop_Http_ReceiveSuppressed"}, + + // + //Http/SSLlayerdrops + // + 3800: {Drop_Http_Generic, "Drop_Http_Generic"}, + 3801: {Drop_Http_InvalidParameter, "Drop_Http_InvalidParameter"}, + 3802: {Drop_Http_InsufficientResources, "Drop_Http_InsufficientResources"}, + 3803: {Drop_Http_InvalidHandle, "Drop_Http_InvalidHandle"}, + 3804: {Drop_Http_NotSupported, "Drop_Http_NotSupported"}, + 3805: {Drop_Http_BadNetworkPath, "Drop_Http_BadNetworkPath"}, + 3806: {Drop_Http_InternalError, "Drop_Http_InternalError"}, + 3807: {Drop_Http_NoSuchPackage, "Drop_Http_NoSuchPackage"}, + 3808: {Drop_Http_PrivilegeNotHeld, "Drop_Http_PrivilegeNotHeld"}, + 3809: {Drop_Http_CannotImpersonate, "Drop_Http_CannotImpersonate"}, + 3810: {Drop_Http_LogonFailure, "Drop_Http_LogonFailure"}, + 3811: {Drop_Http_NoSuchLogonSession, "Drop_Http_NoSuchLogonSession"}, + 3812: {Drop_Http_AccessDenied, "Drop_Http_AccessDenied"}, + 3813: {Drop_Http_NoLogonServers, "Drop_Http_NoLogonServers"}, + 3814: {Drop_Http_TimeDifferenceAtDc, "Drop_Http_TimeDifferenceAtDc"}, + + 4000: {Drop_Http_End, "Drop_Http_End"}, } -// Pretty redundant from the map above, but linux is using this DropReasonType so need to -// converge on something, having an enum with string type name and uint32 type const ( Drop_Unknown DropReasonType = 0 Drop_InvalidData DropReasonType = 1 @@ -596,56 +632,56 @@ const ( // // Tcpip NL errors // - Drop_NL_BadSourceAddress DropReasonType = 901 - Drop_NL_NotLocallyDestined DropReasonType = 902 - Drop_NL_ProtocolUnreachable DropReasonType = 903 - Drop_NL_PortUnreachable DropReasonType = 904 - Drop_NL_BadLength DropReasonType = 905 - Drop_NL_MalformedHeader DropReasonType = 906 - Drop_NL_NoRoute DropReasonType = 907 - Drop_NL_BeyondScope DropReasonType = 908 - Drop_NL_InspectionDrop DropReasonType = 909 - Drop_NL_TooManyDecapsulations DropReasonType = 910 - Drop_NL_AdministrativelyProhibited DropReasonType = 911 - Drop_NL_BadChecksum DropReasonType = 912 - Drop_NL_ReceivePathMax DropReasonType = 913 - Drop_NL_HopLimitExceeded DropReasonType = 914 - Drop_NL_AddressUnreachable DropReasonType = 915 - Drop_NL_RscPacket DropReasonType = 916 - Drop_NL_ForwardPathMax DropReasonType = 917 - Drop_NL_ArbitrationUnhandled DropReasonType = 918 - Drop_NL_InspectionAbsorb DropReasonType = 919 - Drop_NL_DontFragmentMtuExceeded DropReasonType = 920 - Drop_NL_BufferLengthExceeded DropReasonType = 921 - Drop_NL_AddressResolutionTimeout DropReasonType = 922 - Drop_NL_AddressResolutionFailure DropReasonType = 923 - Drop_NL_IpsecFailure DropReasonType = 924 - Drop_NL_ExtensionHeadersFailure DropReasonType = 925 - Drop_NL_IpsnpiClientDrop DropReasonType = 926 - Drop_NL_UnsupportedOffload DropReasonType = 927 - Drop_NL_RoutingFailure DropReasonType = 928 - Drop_NL_AncillaryDataFailure DropReasonType = 929 - Drop_NL_RawDataFailure DropReasonType = 930 - Drop_NL_SessionStateFailure DropReasonType = 931 - Drop_NL_IpsnpiModifiedButNotForwardedDropReasonType DropReasonType = 932 - Drop_NL_IpsnpiNoNextHop DropReasonType = 933 - Drop_NL_IpsnpiNoCompartment DropReasonType = 934 - Drop_NL_IpsnpiNoInterface DropReasonType = 935 - Drop_NL_IpsnpiNoSubInterface DropReasonType = 936 - Drop_NL_IpsnpiInterfaceDisabled DropReasonType = 937 - Drop_NL_IpsnpiSegmentationFailed DropReasonType = 938 - Drop_NL_IpsnpiNoEthernetHeader DropReasonType = 939 - Drop_NL_IpsnpiUnexpectedFragment DropReasonType = 940 - Drop_NL_IpsnpiUnsupportedInterfaceType DropReasonType = 941 - Drop_NL_IpsnpiInvalidLsoInfo DropReasonType = 942 - Drop_NL_IpsnpiInvalidUsoInfo DropReasonType = 943 - Drop_NL_InternalError DropReasonType = 944 - Drop_NL_AdministrativelyConfigured DropReasonType = 945 - Drop_NL_BadOption DropReasonType = 946 - Drop_NL_LoopbackDisallowed DropReasonType = 947 - Drop_NL_SmallerScope DropReasonType = 948 - Drop_NL_QueueFull DropReasonType = 949 - Drop_NL_InterfaceDisabled DropReasonType = 950 + Drop_NL_BadSourceAddress DropReasonType = 901 + Drop_NL_NotLocallyDestined DropReasonType = 902 + Drop_NL_ProtocolUnreachable DropReasonType = 903 + Drop_NL_PortUnreachable DropReasonType = 904 + Drop_NL_BadLength DropReasonType = 905 + Drop_NL_MalformedHeader DropReasonType = 906 + Drop_NL_NoRoute DropReasonType = 907 + Drop_NL_BeyondScope DropReasonType = 908 + Drop_NL_InspectionDrop DropReasonType = 909 + Drop_NL_TooManyDecapsulations DropReasonType = 910 + Drop_NL_AdministrativelyProhibited DropReasonType = 911 + Drop_NL_BadChecksum DropReasonType = 912 + Drop_NL_ReceivePathMax DropReasonType = 913 + Drop_NL_HopLimitExceeded DropReasonType = 914 + Drop_NL_AddressUnreachable DropReasonType = 915 + Drop_NL_RscPacket DropReasonType = 916 + Drop_NL_ForwardPathMax DropReasonType = 917 + Drop_NL_ArbitrationUnhandled DropReasonType = 918 + Drop_NL_InspectionAbsorb DropReasonType = 919 + Drop_NL_DontFragmentMtuExceeded DropReasonType = 920 + Drop_NL_BufferLengthExceeded DropReasonType = 921 + Drop_NL_AddressResolutionTimeout DropReasonType = 922 + Drop_NL_AddressResolutionFailure DropReasonType = 923 + Drop_NL_IpsecFailure DropReasonType = 924 + Drop_NL_ExtensionHeadersFailure DropReasonType = 925 + Drop_NL_IpsnpiClientDrop DropReasonType = 926 + Drop_NL_UnsupportedOffload DropReasonType = 927 + Drop_NL_RoutingFailure DropReasonType = 928 + Drop_NL_AncillaryDataFailure DropReasonType = 929 + Drop_NL_RawDataFailure DropReasonType = 930 + Drop_NL_SessionStateFailure DropReasonType = 931 + Drop_NL_IpsnpiModifiedButNotForwarded DropReasonType = 932 + Drop_NL_IpsnpiNoNextHop DropReasonType = 933 + Drop_NL_IpsnpiNoCompartment DropReasonType = 934 + Drop_NL_IpsnpiNoInterface DropReasonType = 935 + Drop_NL_IpsnpiNoSubInterface DropReasonType = 936 + Drop_NL_IpsnpiInterfaceDisabled DropReasonType = 937 + Drop_NL_IpsnpiSegmentationFailed DropReasonType = 938 + Drop_NL_IpsnpiNoEthernetHeader DropReasonType = 939 + Drop_NL_IpsnpiUnexpectedFragment DropReasonType = 940 + Drop_NL_IpsnpiUnsupportedInterfaceType DropReasonType = 941 + Drop_NL_IpsnpiInvalidLsoInfo DropReasonType = 942 + Drop_NL_IpsnpiInvalidUsoInfo DropReasonType = 943 + Drop_NL_InternalError DropReasonType = 944 + Drop_NL_AdministrativelyConfigured DropReasonType = 945 + Drop_NL_BadOption DropReasonType = 946 + Drop_NL_LoopbackDisallowed DropReasonType = 947 + Drop_NL_SmallerScope DropReasonType = 948 + Drop_NL_QueueFull DropReasonType = 949 + Drop_NL_InterfaceDisabled DropReasonType = 950 Drop_NL_IcmpGeneric DropReasonType = 951 Drop_NL_IcmpTruncatedHeader DropReasonType = 952 @@ -694,9 +730,9 @@ const ( Drop_NL_ArpDlSourceIsLocal DropReasonType = 994 Drop_NL_ArpNotLocallyDestined DropReasonType = 995 - Drop_NL_NlClientDiscard = 996 + Drop_NL_NlClientDiscard DropReasonType = 996 - Drop_NL_IpsnpiUroSegmentSizeExceedsMtu = 997 + Drop_NL_IpsnpiUroSegmentSizeExceedsMtu DropReasonType = 997 Drop_NL_IcmpFragmentedPacket DropReasonType = 998 Drop_NL_FirstFragmentIncomplete DropReasonType = 999 @@ -809,30 +845,30 @@ const ( // Http errors 3000 - 4000. // These must be in sync with cmd\resource.h // - Drop_Http_Begin = 3000 + Drop_Http_Begin DropReasonType = 3000 // // UlErrors // - Drop_Http_UlError_Begin DropReasonType = 3001 - Drop_Http_UlError DropReasonType = 3002 - Drop_Http_UlErrorVerb DropReasonType = 3003 - Drop_Http_UlErrorUrl DropReasonType = 3004 - Drop_Http_UlErrorHeader DropReasonType = 3005 - Drop_Http_UlErrorHost DropReasonType = 3006 - Drop_Http_UlErrorNum DropReasonType = 3007 - Drop_Http_UlErrorFieldLength DropReasonType = 3008 - Drop_Http_UlErrorRequestLength DropReasonType = 3009 - Drop_Http_UlErrorUnauthorizedDropReasonType DropReasonType = 3010 - - Drop_Http_UlErrorForbiddenUrl DropReasonType = 3011 - Drop_Http_UlErrorNotFound DropReasonType = 3012 - Drop_Http_UlErrorContentLength DropReasonType = 3013 - Drop_Http_UlErrorPreconditionFailedDropReasonType DropReasonType = 3014 - Drop_Http_UlErrorEntityTooLarge DropReasonType = 3015 - Drop_Http_UlErrorUrlLength DropReasonType = 3016 - Drop_Http_UlErrorRangeNotSatisfiable DropReasonType = 3017 - Drop_Http_UlErrorMisdirectedRequestDropReasonType DropReasonType = 3018 + Drop_Http_UlError_Begin DropReasonType = 3001 + Drop_Http_UlError DropReasonType = 3002 + Drop_Http_UlErrorVerb DropReasonType = 3003 + Drop_Http_UlErrorUrl DropReasonType = 3004 + Drop_Http_UlErrorHeader DropReasonType = 3005 + Drop_Http_UlErrorHost DropReasonType = 3006 + Drop_Http_UlErrorNum DropReasonType = 3007 + Drop_Http_UlErrorFieldLength DropReasonType = 3008 + Drop_Http_UlErrorRequestLength DropReasonType = 3009 + Drop_Http_UlErrorUnauthorized DropReasonType = 3010 + + Drop_Http_UlErrorForbiddenUrl DropReasonType = 3011 + Drop_Http_UlErrorNotFound DropReasonType = 3012 + Drop_Http_UlErrorContentLength DropReasonType = 3013 + Drop_Http_UlErrorPreconditionFailed DropReasonType = 3014 + Drop_Http_UlErrorEntityTooLarge DropReasonType = 3015 + Drop_Http_UlErrorUrlLength DropReasonType = 3016 + Drop_Http_UlErrorRangeNotSatisfiable DropReasonType = 3017 + Drop_Http_UlErrorMisdirectedRequest DropReasonType = 3018 Drop_Http_UlErrorInternalServer DropReasonType = 3019 Drop_Http_UlErrorNotImplemented DropReasonType = 3020 @@ -852,75 +888,75 @@ const ( // Stream-specific fault codes. // - Drop_Http_UxDuoFaultBegin DropReasonType = 3400 - Drop_Http_UxDuoFaultUserAbort DropReasonType = 3401 - Drop_Http_UxDuoFaultCollection DropReasonType = 3402 - Drop_Http_UxDuoFaultClientResetStream DropReasonType = 3403 - Drop_Http_UxDuoFaultMethodNotFound DropReasonType = 3404 - Drop_Http_UxDuoFaultSchemeMismatch DropReasonType = 3405 - Drop_Http_UxDuoFaultSchemeNotFound DropReasonType = 3406 - Drop_Http_UxDuoFaultDataAfterEnd DropReasonType = 3407 - Drop_Http_UxDuoFaultPathNotFound DropReasonType = 3408 - Drop_Http_UxDuoFaultHalfClosedLocal DropReasonType = 3409 - Drop_Http_UxDuoFaultIncompatibleAuth DropReasonType = 3410 - Drop_Http_UxDuoFaultDeprecated3 DropReasonType = 3411 - Drop_Http_UxDuoFaultClientCertBlocked DropReasonType = 3412 - Drop_Http_UxDuoFaultHeaderNameEmpty DropReasonType = 3413 - Drop_Http_UxDuoFaultIllegalSend DropReasonType = 3414 - Drop_Http_UxDuoFaultPushUpperAttach DropReasonType = 3415 - Drop_Http_UxDuoFaultStreamUpperAttach DropReasonType = 3416 - Drop_Http_UxDuoFaultActiveStreamLimit DropReasonType = 3417 - Drop_Http_UxDuoFaultAuthorityNotFound DropReasonType = 3418 - Drop_Http_UxDuoFaultUnexpectedTail DropReasonType = 3419 - Drop_Http_UxDuoFaultTruncated DropReasonType = 3420 - Drop_Http_UxDuoFaultResponseHold DropReasonType = 3421 - Drop_Http_UxDuoFaultRequestChunked DropReasonType = 3422 - Drop_Http_UxDuoFaultRequestContentLength DropReasonType = 3423 - Drop_Http_UxDuoFaultResponseChunked DropReasonType = 3424 - Drop_Http_UxDuoFaultResponseContentLength DropReasonType = 3425 - Drop_Http_UxDuoFaultResponseTransferEncoding DropReasonType = 3426 - Drop_Http_UxDuoFaultResponseLine DropReasonType = 3427 - Drop_Http_UxDuoFaultResponseHeader DropReasonType = 3428 - Drop_Http_UxDuoFaultConnect DropReasonType = 3429 - Drop_Http_UxDuoFaultChunkStart DropReasonType = 3430 - Drop_Http_UxDuoFaultChunkLength DropReasonType = 3431 - Drop_Http_UxDuoFaultChunkStop DropReasonType = 3432 - Drop_Http_UxDuoFaultHeadersAfterTrailers DropReasonType = 3433 - Drop_Http_UxDuoFaultHeadersAfterEnd DropReasonType = 3434 - Drop_Http_UxDuoFaultEndlessTrailer DropReasonType = 3435 - Drop_Http_UxDuoFaultTransferEncoding DropReasonType = 3436 - Drop_Http_UxDuoFaultMultipleTransferCodings DropReasonType = 3437 - Drop_Http_UxDuoFaultPushBody DropReasonType = 3438 - Drop_Http_UxDuoFaultStreamAbandoned DropReasonType = 3439 - Drop_Http_UxDuoFaultMalformedHost DropReasonType = 3440 - Drop_Http_UxDuoFaultDecompressionOverflow DropReasonType = 3441 - Drop_Http_UxDuoFaultIllegalHeaderName DropReasonType = 3442 - Drop_Http_UxDuoFaultIllegalHeaderValue DropReasonType = 3443 - Drop_Http_UxDuoFaultConnHeaderDisallowed DropReasonType = 3444 - Drop_Http_UxDuoFaultConnHeaderMalformed DropReasonType = 3445 - Drop_Http_UxDuoFaultCookieReassembly DropReasonType = 3446 - Drop_Http_UxDuoFaultStatusHeader DropReasonType = 3447 - Drop_Http_UxDuoFaultSchemeDisallowed DropReasonType = 3448 - Drop_Http_UxDuoFaultPathDisallowed DropReasonType = 3449 - Drop_Http_UxDuoFaultPushHost DropReasonType = 3450 - Drop_Http_UxDuoFaultGoawayReceived DropReasonType = 3451 - Drop_Http_UxDuoFaultAbortLegacyApp DropReasonType = 3452 - Drop_Http_UxDuoFaultUpgradeHeaderDisallowed DropReasonType = 3453 - Drop_Http_UxDuoFaultResponseUpgradeHeader DropReasonType = 3454 - Drop_Http_UxDuoFaultKeepAliveHeaderDisallowedDropReasonType DropReasonType = 3455 - Drop_Http_UxDuoFaultResponseKeepAliveHeader DropReasonType = 3456 - Drop_Http_UxDuoFaultProxyConnHeaderDisallowedDropReasonType DropReasonType = 3457 - Drop_Http_UxDuoFaultResponseProxyConnHeader DropReasonType = 3458 - Drop_Http_UxDuoFaultConnectionGoingAway DropReasonType = 3459 - Drop_Http_UxDuoFaultTransferEncodingDisallowed DropReasonType = 3460 - Drop_Http_UxDuoFaultContentLengthDisallowed DropReasonType = 3461 - Drop_Http_UxDuoFaultTrailerDisallowed DropReasonType = 3462 - Drop_Http_UxDuoFaultEnd DropReasonType = 3463 + Drop_Http_UxDuoFaultBegin DropReasonType = 3400 + Drop_Http_UxDuoFaultUserAbort DropReasonType = 3401 + Drop_Http_UxDuoFaultCollection DropReasonType = 3402 + Drop_Http_UxDuoFaultClientResetStream DropReasonType = 3403 + Drop_Http_UxDuoFaultMethodNotFound DropReasonType = 3404 + Drop_Http_UxDuoFaultSchemeMismatch DropReasonType = 3405 + Drop_Http_UxDuoFaultSchemeNotFound DropReasonType = 3406 + Drop_Http_UxDuoFaultDataAfterEnd DropReasonType = 3407 + Drop_Http_UxDuoFaultPathNotFound DropReasonType = 3408 + Drop_Http_UxDuoFaultHalfClosedLocal DropReasonType = 3409 + Drop_Http_UxDuoFaultIncompatibleAuth DropReasonType = 3410 + Drop_Http_UxDuoFaultDeprecated3 DropReasonType = 3411 + Drop_Http_UxDuoFaultClientCertBlocked DropReasonType = 3412 + Drop_Http_UxDuoFaultHeaderNameEmpty DropReasonType = 3413 + Drop_Http_UxDuoFaultIllegalSend DropReasonType = 3414 + Drop_Http_UxDuoFaultPushUpperAttach DropReasonType = 3415 + Drop_Http_UxDuoFaultStreamUpperAttach DropReasonType = 3416 + Drop_Http_UxDuoFaultActiveStreamLimit DropReasonType = 3417 + Drop_Http_UxDuoFaultAuthorityNotFound DropReasonType = 3418 + Drop_Http_UxDuoFaultUnexpectedTail DropReasonType = 3419 + Drop_Http_UxDuoFaultTruncated DropReasonType = 3420 + Drop_Http_UxDuoFaultResponseHold DropReasonType = 3421 + Drop_Http_UxDuoFaultRequestChunked DropReasonType = 3422 + Drop_Http_UxDuoFaultRequestContentLength DropReasonType = 3423 + Drop_Http_UxDuoFaultResponseChunked DropReasonType = 3424 + Drop_Http_UxDuoFaultResponseContentLength DropReasonType = 3425 + Drop_Http_UxDuoFaultResponseTransferEncoding DropReasonType = 3426 + Drop_Http_UxDuoFaultResponseLine DropReasonType = 3427 + Drop_Http_UxDuoFaultResponseHeader DropReasonType = 3428 + Drop_Http_UxDuoFaultConnect DropReasonType = 3429 + Drop_Http_UxDuoFaultChunkStart DropReasonType = 3430 + Drop_Http_UxDuoFaultChunkLength DropReasonType = 3431 + Drop_Http_UxDuoFaultChunkStop DropReasonType = 3432 + Drop_Http_UxDuoFaultHeadersAfterTrailers DropReasonType = 3433 + Drop_Http_UxDuoFaultHeadersAfterEnd DropReasonType = 3434 + Drop_Http_UxDuoFaultEndlessTrailer DropReasonType = 3435 + Drop_Http_UxDuoFaultTransferEncoding DropReasonType = 3436 + Drop_Http_UxDuoFaultMultipleTransferCodings DropReasonType = 3437 + Drop_Http_UxDuoFaultPushBody DropReasonType = 3438 + Drop_Http_UxDuoFaultStreamAbandoned DropReasonType = 3439 + Drop_Http_UxDuoFaultMalformedHost DropReasonType = 3440 + Drop_Http_UxDuoFaultDecompressionOverflow DropReasonType = 3441 + Drop_Http_UxDuoFaultIllegalHeaderName DropReasonType = 3442 + Drop_Http_UxDuoFaultIllegalHeaderValue DropReasonType = 3443 + Drop_Http_UxDuoFaultConnHeaderDisallowed DropReasonType = 3444 + Drop_Http_UxDuoFaultConnHeaderMalformed DropReasonType = 3445 + Drop_Http_UxDuoFaultCookieReassembly DropReasonType = 3446 + Drop_Http_UxDuoFaultStatusHeader DropReasonType = 3447 + Drop_Http_UxDuoFaultSchemeDisallowed DropReasonType = 3448 + Drop_Http_UxDuoFaultPathDisallowed DropReasonType = 3449 + Drop_Http_UxDuoFaultPushHost DropReasonType = 3450 + Drop_Http_UxDuoFaultGoawayReceived DropReasonType = 3451 + Drop_Http_UxDuoFaultAbortLegacyApp DropReasonType = 3452 + Drop_Http_UxDuoFaultUpgradeHeaderDisallowed DropReasonType = 3453 + Drop_Http_UxDuoFaultResponseUpgradeHeader DropReasonType = 3454 + Drop_Http_UxDuoFaultKeepAliveHeaderDisallowed DropReasonType = 3455 + Drop_Http_UxDuoFaultResponseKeepAliveHeader DropReasonType = 3456 + Drop_Http_UxDuoFaultProxyConnHeaderDisallowed DropReasonType = 3457 + Drop_Http_UxDuoFaultResponseProxyConnHeader DropReasonType = 3458 + Drop_Http_UxDuoFaultConnectionGoingAway DropReasonType = 3459 + Drop_Http_UxDuoFaultTransferEncodingDisallowed DropReasonType = 3460 + Drop_Http_UxDuoFaultContentLengthDisallowed DropReasonType = 3461 + Drop_Http_UxDuoFaultTrailerDisallowed DropReasonType = 3462 + Drop_Http_UxDuoFaultEnd DropReasonType = 3463 // // WSK layer drops // - Drop_Http_ReceiveSuppressed = 3600 + Drop_Http_ReceiveSuppressed DropReasonType = 3600 // // Http/SSL layer drops @@ -941,5 +977,5 @@ const ( Drop_Http_NoLogonServers DropReasonType = 3813 Drop_Http_TimeDifferenceAtDc DropReasonType = 3814 - Drop_Http_End = 4000 + Drop_Http_End DropReasonType = 4000 ) diff --git a/pkg/plugin/windows/pktmon/pktmon_parsing_windows.go b/pkg/plugin/windows/pktmon/pktmon_parsing_windows.go new file mode 100644 index 0000000000..9c074014c4 --- /dev/null +++ b/pkg/plugin/windows/pktmon/pktmon_parsing_windows.go @@ -0,0 +1,116 @@ +package pktmon + +import ( + "fmt" + + "github.com/cilium/cilium/api/v1/flow" + "github.com/google/gopacket" + "github.com/google/gopacket/layers" + "github.com/microsoft/retina/pkg/utils" + "go.uber.org/zap" +) + +func (w *WinPktMon) getUnixTimestamp(StreamMetaData C.PACKETMONITOR_STREAM_METADATA_RETINA) int64 { + // use C conversion to pull Windows timestamp + var timestampint C.longlong + C.LargeIntegerToInt(StreamMetaData.TimeStamp, ×tampint) + timestamp := int64(timestampint) + + // convert from windows to unix time + var epochDifference int64 = 116444736000000000 + return (timestamp - epochDifference) / 10000000 +} + +func (w *WinPktMon) getVerdict(StreamMetaData C.PACKETMONITOR_STREAM_METADATA_RETINA) flow.Verdict { + if StreamMetaData.DropReason != 0 { + return flow.Verdict_DROPPED + } + return flow.Verdict_FORWARDED +} + +func (w *WinPktMon) parseL4(packet gopacket.Packet) (*layers.IPv4, error) { + ip := &layers.IPv4{} + if ipLayer := packet.Layer(layers.LayerTypeIPv4); ipLayer != nil { + ip, _ = ipLayer.(*layers.IPv4) + } else { + return nil, fmt.Errorf("Failed to parse IP layer %w", ErrFailedToParseWithGoPacket) + } + return ip, nil +} + +func (w *WinPktMon) parseTCP(packet gopacket.Packet) (*layers.TCP, error) { + tcp := &layers.TCP{} + if tcpLayer := packet.Layer(layers.LayerTypeTCP); tcpLayer != nil { + tcp, _ = tcpLayer.(*layers.TCP) + } else { + return nil, fmt.Errorf("Failed to parse TCP layer %w", ErrFailedToParseWithGoPacket) + } + return tcp, nil +} + +func (w *WinPktMon) parseUDP(packet gopacket.Packet) (*layers.UDP, error) { + udp := &layers.UDP{} + if udpLayer := packet.Layer(layers.LayerTypeUDP); udpLayer != nil { + udp, _ = udpLayer.(*layers.UDP) + } else { + return nil, fmt.Errorf("Failed to parse UDP layer %w", ErrFailedToParseWithGoPacket) + } + return udp, nil +} + +func (w *WinPktMon) parsePacket(buffer []byte, StreamMetaData C.PACKETMONITOR_STREAM_METADATA_RETINA) (gopacket.Packet, error) { + var packet gopacket.Packet + // Ethernet + if StreamMetaData.PacketType == 1 { + packet = gopacket.NewPacket(buffer, layers.LayerTypeEthernet, gopacket.NoCopy) + + // IPv4 + } else if StreamMetaData.PacketType == 3 { + packet = gopacket.NewPacket(buffer, layers.LayerTypeIPv4, gopacket.NoCopy) + } else { + return nil, ErrUnknownPacketType + } + return packet, nil +} + +func (w *WinPktMon) ParseDNS(fl *flow.Flow, metadata *utils.RetinaMetadata, packet gopacket.Packet) error { + dns := &layers.DNS{} + if dnsLayer := packet.Layer(layers.LayerTypeDNS); dnsLayer != nil { + dns, _ = dnsLayer.(*layers.DNS) + } else { + return nil + } + + if dns != nil { + //fmt.Printf("qType %d\n", packet.dns.OpCode) + var qtype string + switch dns.OpCode { + case layers.DNSOpCodeQuery: + qtype = "Q" + case layers.DNSOpCodeStatus: + qtype = "R" + default: + qtype = "U" + } + + var as, qs []string + for _, a := range dns.Answers { + if a.IP != nil { + as = append(as, a.IP.String()) + } + } + for _, q := range dns.Questions { + qs = append(qs, string(q.Name)) + } + + var query string + if len(dns.Questions) > 0 { + query = string(dns.Questions[0].Name[:]) + } + w.l.Debug("DNS packet", zap.String("query", query), zap.String("qtype", qtype), zap.String("answers", fmt.Sprintf("%v", as))) + fl.Verdict = utils.Verdict_DNS + utils.AddDNSInfo(fl, metadata, qtype, uint32(dns.ResponseCode), query, []string{qtype}, len(as), as) + } + + return nil +} diff --git a/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go b/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go index af3a0da980..03b9f53b66 100644 --- a/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go +++ b/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go @@ -30,19 +30,12 @@ type PktMonPlugin struct { l *log.ZapLogger } -func (p *PktMonPlugin) Compile(ctx context.Context) error { - return nil -} - -func (p *PktMonPlugin) Generate(ctx context.Context) error { - return nil -} - func (p *PktMonPlugin) Init() error { + pktmonlogger := log.Logger().Named(Name) p.pkt = &WinPktMon{ - l: log.Logger().Named(Name), + l: pktmonlogger, } - p.l = log.Logger().Named(Name) + p.l = pktmonlogger return nil } @@ -51,20 +44,6 @@ func (p *PktMonPlugin) Name() string { return "pktmon" } -func (p *PktMonPlugin) SetupChannel(ch chan *v1.Event) error { - p.externalChannel = ch - return nil -} - -func New(cfg *kcfg.Config) api.Plugin { - return &PktMonPlugin{} -} - -type DNSRequest struct { - SourceIP byte - DestinationIP byte -} - func (p *PktMonPlugin) Start(ctx context.Context) error { fmt.Printf("setting up enricher since pod level is enabled \n") p.enricher = enricher.Instance() @@ -96,9 +75,9 @@ func (p *PktMonPlugin) Start(ctx context.Context) error { // do this here instead of GetNextPacket to keep higher level // packet parsing out of L4 parsing - err = parseDNS(fl, meta, packet) + err = p.pkt.ParseDNS(fl, meta, packet) if err != nil { - golog.Printf("Error parsing DNS: %v\n", err) + golog.Printf("Error parsing DNS: %v\n ", err) continue } @@ -110,7 +89,7 @@ func (p *PktMonPlugin) Start(ctx context.Context) error { if p.enricher != nil { p.enricher.Write(ev) } else { - fmt.Printf("enricher is nil when writing\n") + fmt.Printf("enricher is nil when writing\n ") } // Write the event to the external channel. @@ -127,6 +106,23 @@ func (p *PktMonPlugin) Start(ctx context.Context) error { } } +func (p *PktMonPlugin) SetupChannel(ch chan *v1.Event) error { + p.externalChannel = ch + return nil +} + +func New(cfg *kcfg.Config) api.Plugin { + return &PktMonPlugin{} +} + func (p *PktMonPlugin) Stop() error { return nil } + +func (p *PktMonPlugin) Compile(ctx context.Context) error { + return nil +} + +func (p *PktMonPlugin) Generate(ctx context.Context) error { + return nil +} diff --git a/pkg/plugin/windows/pktmon/pktmon_windows.go b/pkg/plugin/windows/pktmon/pktmon_windows.go index d3a215af5e..7585b9375c 100644 --- a/pkg/plugin/windows/pktmon/pktmon_windows.go +++ b/pkg/plugin/windows/pktmon/pktmon_windows.go @@ -152,114 +152,9 @@ func (w *WinPktMon) GetNextPacket() (*flow.Flow, *utils.RetinaMetadata, gopacket // add metadata meta := &utils.RetinaMetadata{ - Bytes: uint64(payloadLength), + Bytes: uint64(payloadLength), + DropReason: metrics.GetDropReason(), } return fl, meta, packet, nil } - -func (w *WinPktMon) getUnixTimestamp(StreamMetaData C.PACKETMONITOR_STREAM_METADATA_RETINA) int64 { - // use C conversion to pull Windows timestamp - var timestampint C.longlong - C.LargeIntegerToInt(StreamMetaData.TimeStamp, ×tampint) - timestamp := int64(timestampint) - - // convert from windows to unix time - var epochDifference int64 = 116444736000000000 - return (timestamp - epochDifference) / 10000000 -} - -func (w *WinPktMon) getVerdict(StreamMetaData C.PACKETMONITOR_STREAM_METADATA_RETINA) flow.Verdict { - if StreamMetaData.DropReason != 0 { - return flow.Verdict_DROPPED - } - return flow.Verdict_FORWARDED -} - -func (w *WinPktMon) parseL4(packet gopacket.Packet) (*layers.IPv4, error) { - ip := &layers.IPv4{} - if ipLayer := packet.Layer(layers.LayerTypeIPv4); ipLayer != nil { - ip, _ = ipLayer.(*layers.IPv4) - } else { - return nil, fmt.Errorf("Failed to parse IP layer %w", ErrFailedToParseWithGoPacket) - } - return ip, nil -} - -func (w *WinPktMon) parseTCP(packet gopacket.Packet) (*layers.TCP, error) { - tcp := &layers.TCP{} - if tcpLayer := packet.Layer(layers.LayerTypeTCP); tcpLayer != nil { - tcp, _ = tcpLayer.(*layers.TCP) - } else { - return nil, fmt.Errorf("Failed to parse TCP layer %w", ErrFailedToParseWithGoPacket) - } - return tcp, nil -} - -func (w *WinPktMon) parseUDP(packet gopacket.Packet) (*layers.UDP, error) { - udp := &layers.UDP{} - if udpLayer := packet.Layer(layers.LayerTypeUDP); udpLayer != nil { - udp, _ = udpLayer.(*layers.UDP) - } else { - return nil, fmt.Errorf("Failed to parse UDP layer %w", ErrFailedToParseWithGoPacket) - } - return udp, nil -} - -func (w *WinPktMon) parsePacket(buffer []byte, StreamMetaData C.PACKETMONITOR_STREAM_METADATA_RETINA) (gopacket.Packet, error) { - var packet gopacket.Packet - // Ethernet - if StreamMetaData.PacketType == 1 { - packet = gopacket.NewPacket(buffer, layers.LayerTypeEthernet, gopacket.NoCopy) - - // IPv4 - } else if StreamMetaData.PacketType == 3 { - packet = gopacket.NewPacket(buffer, layers.LayerTypeIPv4, gopacket.NoCopy) - } else { - return nil, ErrUnknownPacketType - } - return packet, nil -} - -func parseDNS(fl *flow.Flow, metadata *utils.RetinaMetadata, packet gopacket.Packet) error { - dns := &layers.DNS{} - if dnsLayer := packet.Layer(layers.LayerTypeDNS); dnsLayer != nil { - dns, _ = dnsLayer.(*layers.DNS) - } else { - return nil - } - - if dns != nil { - //fmt.Printf("qType %d\n", packet.dns.OpCode) - var qtype string - switch dns.OpCode { - case layers.DNSOpCodeQuery: - qtype = "Q" - case layers.DNSOpCodeStatus: - qtype = "R" - default: - qtype = "U" - } - - var as, qs []string - for _, a := range dns.Answers { - if a.IP != nil { - as = append(as, a.IP.String()) - } - } - for _, q := range dns.Questions { - qs = append(qs, string(q.Name)) - } - - var query string - if len(dns.Questions) > 0 { - query = string(dns.Questions[0].Name[:]) - } - - fl.Verdict = utils.Verdict_DNS - - utils.AddDNSInfo(fl, metadata, qtype, uint32(dns.ResponseCode), query, []string{qtype}, len(as), as) - } - - return nil -} diff --git a/pkg/plugin/windows/pktmon/types.go b/pkg/plugin/windows/pktmon/types.go index 3771e05dd5..a7b6c4ab95 100644 --- a/pkg/plugin/windows/pktmon/types.go +++ b/pkg/plugin/windows/pktmon/types.go @@ -12,6 +12,7 @@ import ( type PktMon interface { Initialize() error GetNextPacket() (*flow.Flow, *utils.RetinaMetadata, gopacket.Packet, error) + ParseDNS(*flow.Flow, *utils.RetinaMetadata, gopacket.Packet) error } type MockPktMon struct{} diff --git a/pkg/utils/flow_utils.go b/pkg/utils/flow_utils.go index 7068095425..700ac08589 100644 --- a/pkg/utils/flow_utils.go +++ b/pkg/utils/flow_utils.go @@ -148,7 +148,7 @@ func AddTCPFlags(f *flow.Flow, syn, ack, fin, rst, psh, urg uint16) { } func AddTcpFlagsBool(f *flow.Flow, syn, ack, fin, rst, psh, urg bool) { - if f.L4.GetTCP() == nil { + if f.GetL4().GetTCP() == nil { return } diff --git a/pkg/utils/metadata_linux.pb.go b/pkg/utils/metadata_linux.pb.go index 860fbd8d6c..52bb0be772 100644 --- a/pkg/utils/metadata_linux.pb.go +++ b/pkg/utils/metadata_linux.pb.go @@ -1,8 +1,8 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 -// protoc v4.24.2 -// source: pkg/utils/metadata.proto +// protoc-gen-go v1.34.1 +// protoc v3.21.12 +// source: pkg/utils/metadata_linux.proto package utils @@ -53,11 +53,11 @@ func (x DNSType) String() string { } func (DNSType) Descriptor() protoreflect.EnumDescriptor { - return file_pkg_utils_metadata_proto_enumTypes[0].Descriptor() + return file_pkg_utils_metadata_linux_proto_enumTypes[0].Descriptor() } func (DNSType) Type() protoreflect.EnumType { - return &file_pkg_utils_metadata_proto_enumTypes[0] + return &file_pkg_utils_metadata_linux_proto_enumTypes[0] } func (x DNSType) Number() protoreflect.EnumNumber { @@ -66,7 +66,7 @@ func (x DNSType) Number() protoreflect.EnumNumber { // Deprecated: Use DNSType.Descriptor instead. func (DNSType) EnumDescriptor() ([]byte, []int) { - return file_pkg_utils_metadata_proto_rawDescGZIP(), []int{0} + return file_pkg_utils_metadata_linux_proto_rawDescGZIP(), []int{0} } // Ref: pkg/plugin/dropreason/_cprog/drop_reason.h. @@ -115,11 +115,11 @@ func (x DropReason) String() string { } func (DropReason) Descriptor() protoreflect.EnumDescriptor { - return file_pkg_utils_metadata_proto_enumTypes[1].Descriptor() + return file_pkg_utils_metadata_linux_proto_enumTypes[1].Descriptor() } func (DropReason) Type() protoreflect.EnumType { - return &file_pkg_utils_metadata_proto_enumTypes[1] + return &file_pkg_utils_metadata_linux_proto_enumTypes[1] } func (x DropReason) Number() protoreflect.EnumNumber { @@ -128,7 +128,7 @@ func (x DropReason) Number() protoreflect.EnumNumber { // Deprecated: Use DropReason.Descriptor instead. func (DropReason) EnumDescriptor() ([]byte, []int) { - return file_pkg_utils_metadata_proto_rawDescGZIP(), []int{1} + return file_pkg_utils_metadata_linux_proto_rawDescGZIP(), []int{1} } type RetinaMetadata struct { @@ -149,7 +149,7 @@ type RetinaMetadata struct { func (x *RetinaMetadata) Reset() { *x = RetinaMetadata{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_utils_metadata_proto_msgTypes[0] + mi := &file_pkg_utils_metadata_linux_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162,7 +162,7 @@ func (x *RetinaMetadata) String() string { func (*RetinaMetadata) ProtoMessage() {} func (x *RetinaMetadata) ProtoReflect() protoreflect.Message { - mi := &file_pkg_utils_metadata_proto_msgTypes[0] + mi := &file_pkg_utils_metadata_linux_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175,7 +175,7 @@ func (x *RetinaMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use RetinaMetadata.ProtoReflect.Descriptor instead. func (*RetinaMetadata) Descriptor() ([]byte, []int) { - return file_pkg_utils_metadata_proto_rawDescGZIP(), []int{0} + return file_pkg_utils_metadata_linux_proto_rawDescGZIP(), []int{0} } func (x *RetinaMetadata) GetBytes() uint64 { @@ -213,62 +213,63 @@ func (x *RetinaMetadata) GetDropReason() DropReason { return DropReason_IPTABLE_RULE_DROP } -var File_pkg_utils_metadata_proto protoreflect.FileDescriptor - -var file_pkg_utils_metadata_proto_rawDesc = []byte{ - 0x0a, 0x18, 0x70, 0x6b, 0x67, 0x2f, 0x75, 0x74, 0x69, 0x6c, 0x73, 0x2f, 0x6d, 0x65, 0x74, 0x61, - 0x64, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x75, 0x74, 0x69, 0x6c, - 0x73, 0x22, 0xc1, 0x01, 0x0a, 0x0e, 0x52, 0x65, 0x74, 0x69, 0x6e, 0x61, 0x4d, 0x65, 0x74, 0x61, - 0x64, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x04, 0x52, 0x05, 0x62, 0x79, 0x74, 0x65, 0x73, 0x12, 0x29, 0x0a, 0x08, 0x64, 0x6e, - 0x73, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0e, 0x2e, 0x75, - 0x74, 0x69, 0x6c, 0x73, 0x2e, 0x44, 0x4e, 0x53, 0x54, 0x79, 0x70, 0x65, 0x52, 0x07, 0x64, 0x6e, - 0x73, 0x54, 0x79, 0x70, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6e, 0x75, 0x6d, 0x5f, 0x72, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x6e, 0x75, - 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x74, 0x63, - 0x70, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x74, 0x63, 0x70, 0x49, - 0x64, 0x12, 0x32, 0x0a, 0x0b, 0x64, 0x72, 0x6f, 0x70, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, - 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x11, 0x2e, 0x75, 0x74, 0x69, 0x6c, 0x73, 0x2e, 0x44, - 0x72, 0x6f, 0x70, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x52, 0x0a, 0x64, 0x72, 0x6f, 0x70, 0x52, - 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2a, 0x2f, 0x0a, 0x07, 0x44, 0x4e, 0x53, 0x54, 0x79, 0x70, 0x65, - 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00, 0x12, 0x09, 0x0a, - 0x05, 0x51, 0x55, 0x45, 0x52, 0x59, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x52, 0x45, 0x53, 0x50, - 0x4f, 0x4e, 0x53, 0x45, 0x10, 0x02, 0x2a, 0xa5, 0x01, 0x0a, 0x0a, 0x44, 0x72, 0x6f, 0x70, 0x52, - 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x15, 0x0a, 0x11, 0x49, 0x50, 0x54, 0x41, 0x42, 0x4c, 0x45, - 0x5f, 0x52, 0x55, 0x4c, 0x45, 0x5f, 0x44, 0x52, 0x4f, 0x50, 0x10, 0x00, 0x12, 0x14, 0x0a, 0x10, - 0x49, 0x50, 0x54, 0x41, 0x42, 0x4c, 0x45, 0x5f, 0x4e, 0x41, 0x54, 0x5f, 0x44, 0x52, 0x4f, 0x50, - 0x10, 0x01, 0x12, 0x15, 0x0a, 0x11, 0x54, 0x43, 0x50, 0x5f, 0x43, 0x4f, 0x4e, 0x4e, 0x45, 0x43, - 0x54, 0x5f, 0x42, 0x41, 0x53, 0x49, 0x43, 0x10, 0x02, 0x12, 0x14, 0x0a, 0x10, 0x54, 0x43, 0x50, - 0x5f, 0x41, 0x43, 0x43, 0x45, 0x50, 0x54, 0x5f, 0x42, 0x41, 0x53, 0x49, 0x43, 0x10, 0x03, 0x12, - 0x13, 0x0a, 0x0f, 0x54, 0x43, 0x50, 0x5f, 0x43, 0x4c, 0x4f, 0x53, 0x45, 0x5f, 0x42, 0x41, 0x53, - 0x49, 0x43, 0x10, 0x04, 0x12, 0x16, 0x0a, 0x12, 0x43, 0x4f, 0x4e, 0x4e, 0x54, 0x52, 0x41, 0x43, - 0x4b, 0x5f, 0x41, 0x44, 0x44, 0x5f, 0x44, 0x52, 0x4f, 0x50, 0x10, 0x05, 0x12, 0x10, 0x0a, 0x0c, - 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x5f, 0x44, 0x52, 0x4f, 0x50, 0x10, 0x06, 0x42, 0x27, - 0x5a, 0x25, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x63, - 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x2f, 0x72, 0x65, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x70, 0x6b, - 0x67, 0x2f, 0x75, 0x74, 0x69, 0x6c, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, +var File_pkg_utils_metadata_linux_proto protoreflect.FileDescriptor + +var file_pkg_utils_metadata_linux_proto_rawDesc = []byte{ + 0x0a, 0x1e, 0x70, 0x6b, 0x67, 0x2f, 0x75, 0x74, 0x69, 0x6c, 0x73, 0x2f, 0x6d, 0x65, 0x74, 0x61, + 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6c, 0x69, 0x6e, 0x75, 0x78, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x12, 0x05, 0x75, 0x74, 0x69, 0x6c, 0x73, 0x22, 0xc1, 0x01, 0x0a, 0x0e, 0x52, 0x65, 0x74, 0x69, + 0x6e, 0x61, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x62, 0x79, + 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x62, 0x79, 0x74, 0x65, 0x73, + 0x12, 0x29, 0x0a, 0x08, 0x64, 0x6e, 0x73, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x0e, 0x32, 0x0e, 0x2e, 0x75, 0x74, 0x69, 0x6c, 0x73, 0x2e, 0x44, 0x4e, 0x53, 0x54, 0x79, + 0x70, 0x65, 0x52, 0x07, 0x64, 0x6e, 0x73, 0x54, 0x79, 0x70, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6e, + 0x75, 0x6d, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, + 0x28, 0x0d, 0x52, 0x0c, 0x6e, 0x75, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, + 0x12, 0x15, 0x0a, 0x06, 0x74, 0x63, 0x70, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, + 0x52, 0x05, 0x74, 0x63, 0x70, 0x49, 0x64, 0x12, 0x32, 0x0a, 0x0b, 0x64, 0x72, 0x6f, 0x70, 0x5f, + 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x11, 0x2e, 0x75, + 0x74, 0x69, 0x6c, 0x73, 0x2e, 0x44, 0x72, 0x6f, 0x70, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x52, + 0x0a, 0x64, 0x72, 0x6f, 0x70, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2a, 0x2f, 0x0a, 0x07, 0x44, + 0x4e, 0x53, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, + 0x4e, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x51, 0x55, 0x45, 0x52, 0x59, 0x10, 0x01, 0x12, 0x0c, + 0x0a, 0x08, 0x52, 0x45, 0x53, 0x50, 0x4f, 0x4e, 0x53, 0x45, 0x10, 0x02, 0x2a, 0xa5, 0x01, 0x0a, + 0x0a, 0x44, 0x72, 0x6f, 0x70, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x15, 0x0a, 0x11, 0x49, + 0x50, 0x54, 0x41, 0x42, 0x4c, 0x45, 0x5f, 0x52, 0x55, 0x4c, 0x45, 0x5f, 0x44, 0x52, 0x4f, 0x50, + 0x10, 0x00, 0x12, 0x14, 0x0a, 0x10, 0x49, 0x50, 0x54, 0x41, 0x42, 0x4c, 0x45, 0x5f, 0x4e, 0x41, + 0x54, 0x5f, 0x44, 0x52, 0x4f, 0x50, 0x10, 0x01, 0x12, 0x15, 0x0a, 0x11, 0x54, 0x43, 0x50, 0x5f, + 0x43, 0x4f, 0x4e, 0x4e, 0x45, 0x43, 0x54, 0x5f, 0x42, 0x41, 0x53, 0x49, 0x43, 0x10, 0x02, 0x12, + 0x14, 0x0a, 0x10, 0x54, 0x43, 0x50, 0x5f, 0x41, 0x43, 0x43, 0x45, 0x50, 0x54, 0x5f, 0x42, 0x41, + 0x53, 0x49, 0x43, 0x10, 0x03, 0x12, 0x13, 0x0a, 0x0f, 0x54, 0x43, 0x50, 0x5f, 0x43, 0x4c, 0x4f, + 0x53, 0x45, 0x5f, 0x42, 0x41, 0x53, 0x49, 0x43, 0x10, 0x04, 0x12, 0x16, 0x0a, 0x12, 0x43, 0x4f, + 0x4e, 0x4e, 0x54, 0x52, 0x41, 0x43, 0x4b, 0x5f, 0x41, 0x44, 0x44, 0x5f, 0x44, 0x52, 0x4f, 0x50, + 0x10, 0x05, 0x12, 0x10, 0x0a, 0x0c, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x5f, 0x44, 0x52, + 0x4f, 0x50, 0x10, 0x06, 0x42, 0x27, 0x5a, 0x25, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, + 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x2f, 0x72, 0x65, 0x74, + 0x69, 0x6e, 0x61, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x75, 0x74, 0x69, 0x6c, 0x73, 0x62, 0x06, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_pkg_utils_metadata_proto_rawDescOnce sync.Once - file_pkg_utils_metadata_proto_rawDescData = file_pkg_utils_metadata_proto_rawDesc + file_pkg_utils_metadata_linux_proto_rawDescOnce sync.Once + file_pkg_utils_metadata_linux_proto_rawDescData = file_pkg_utils_metadata_linux_proto_rawDesc ) -func file_pkg_utils_metadata_proto_rawDescGZIP() []byte { - file_pkg_utils_metadata_proto_rawDescOnce.Do(func() { - file_pkg_utils_metadata_proto_rawDescData = protoimpl.X.CompressGZIP(file_pkg_utils_metadata_proto_rawDescData) +func file_pkg_utils_metadata_linux_proto_rawDescGZIP() []byte { + file_pkg_utils_metadata_linux_proto_rawDescOnce.Do(func() { + file_pkg_utils_metadata_linux_proto_rawDescData = protoimpl.X.CompressGZIP(file_pkg_utils_metadata_linux_proto_rawDescData) }) - return file_pkg_utils_metadata_proto_rawDescData + return file_pkg_utils_metadata_linux_proto_rawDescData } -var file_pkg_utils_metadata_proto_enumTypes = make([]protoimpl.EnumInfo, 2) -var file_pkg_utils_metadata_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_pkg_utils_metadata_proto_goTypes = []interface{}{ +var file_pkg_utils_metadata_linux_proto_enumTypes = make([]protoimpl.EnumInfo, 2) +var file_pkg_utils_metadata_linux_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_pkg_utils_metadata_linux_proto_goTypes = []interface{}{ (DNSType)(0), // 0: utils.DNSType (DropReason)(0), // 1: utils.DropReason (*RetinaMetadata)(nil), // 2: utils.RetinaMetadata } -var file_pkg_utils_metadata_proto_depIdxs = []int32{ +var file_pkg_utils_metadata_linux_proto_depIdxs = []int32{ 0, // 0: utils.RetinaMetadata.dns_type:type_name -> utils.DNSType 1, // 1: utils.RetinaMetadata.drop_reason:type_name -> utils.DropReason 2, // [2:2] is the sub-list for method output_type @@ -278,13 +279,13 @@ var file_pkg_utils_metadata_proto_depIdxs = []int32{ 0, // [0:2] is the sub-list for field type_name } -func init() { file_pkg_utils_metadata_proto_init() } -func file_pkg_utils_metadata_proto_init() { - if File_pkg_utils_metadata_proto != nil { +func init() { file_pkg_utils_metadata_linux_proto_init() } +func file_pkg_utils_metadata_linux_proto_init() { + if File_pkg_utils_metadata_linux_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_pkg_utils_metadata_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_pkg_utils_metadata_linux_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RetinaMetadata); i { case 0: return &v.state @@ -301,19 +302,19 @@ func file_pkg_utils_metadata_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_pkg_utils_metadata_proto_rawDesc, + RawDescriptor: file_pkg_utils_metadata_linux_proto_rawDesc, NumEnums: 2, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_pkg_utils_metadata_proto_goTypes, - DependencyIndexes: file_pkg_utils_metadata_proto_depIdxs, - EnumInfos: file_pkg_utils_metadata_proto_enumTypes, - MessageInfos: file_pkg_utils_metadata_proto_msgTypes, + GoTypes: file_pkg_utils_metadata_linux_proto_goTypes, + DependencyIndexes: file_pkg_utils_metadata_linux_proto_depIdxs, + EnumInfos: file_pkg_utils_metadata_linux_proto_enumTypes, + MessageInfos: file_pkg_utils_metadata_linux_proto_msgTypes, }.Build() - File_pkg_utils_metadata_proto = out.File - file_pkg_utils_metadata_proto_rawDesc = nil - file_pkg_utils_metadata_proto_goTypes = nil - file_pkg_utils_metadata_proto_depIdxs = nil + File_pkg_utils_metadata_linux_proto = out.File + file_pkg_utils_metadata_linux_proto_rawDesc = nil + file_pkg_utils_metadata_linux_proto_goTypes = nil + file_pkg_utils_metadata_linux_proto_depIdxs = nil } diff --git a/pkg/utils/metadata_linux.proto b/pkg/utils/metadata_linux.proto index 6910cf58bb..1e15c5f105 100644 --- a/pkg/utils/metadata_linux.proto +++ b/pkg/utils/metadata_linux.proto @@ -33,4 +33,3 @@ enum DropReason { CONNTRACK_ADD_DROP = 5; UNKNOWN_DROP = 6; } - From 87022c50e7056c48f1c8264e80e5838602acb207 Mon Sep 17 00:00:00 2001 From: Mathew Merrick Date: Tue, 28 May 2024 11:31:09 -0700 Subject: [PATCH 08/13] reduce plugin size --- controller/Dockerfile.windows-native | 12 +- pkg/metrics/types_windows.go | 41 ++--- .../windows/pktmon/pktmon_parsing_windows.go | 116 ------------- .../windows/pktmon/pktmon_plugin_windows.go | 103 ++++++++--- pkg/plugin/windows/pktmon/pktmon_windows.go | 160 ------------------ pkg/plugin/windows/pktmon/types.go | 43 ----- pkg/utils/flow_utils.go | 4 +- pkg/utils/utils_windows.go | 6 +- 8 files changed, 106 insertions(+), 379 deletions(-) delete mode 100644 pkg/plugin/windows/pktmon/pktmon_parsing_windows.go delete mode 100644 pkg/plugin/windows/pktmon/pktmon_windows.go delete mode 100644 pkg/plugin/windows/pktmon/types.go diff --git a/controller/Dockerfile.windows-native b/controller/Dockerfile.windows-native index b0dab00f1e..ce9e16a0b4 100644 --- a/controller/Dockerfile.windows-native +++ b/controller/Dockerfile.windows-native @@ -2,33 +2,31 @@ # It can't be placed in the other Windows Dockerfile, as those use # buildx targets, and this one requires legacy build. # Maybe one day: https://github.com/moby/buildkit/issues/616 - ARG BUILDER_IMAGE -FROM --platform=windows/amd64 ${BUILDER_IMAGE} as builder +FROM --platform=windows/amd64 mcr.microsoft.com/oss/go/microsoft/golang:1.22.2-windowsservercore-ltsc2022 as builder WORKDIR C:\\retina -RUN gcc.exe --version -RUN go version COPY go.mod . COPY go.sum . ENV CGO_ENABLED=1 RUN go mod download RUN go mod verify ADD . . -RUN cp -r c:/pktmon/ pkg/plugin/windows/pktmon/packetmonitorsupport/ -RUN ls pkg/plugin/windows/pktmon/packetmonitorsupport/ ARG VERSION ARG APP_INSIGHTS_ID SHELL ["cmd", "/S", "/C"] ENV VERSION=$VERSION -ENV APP_INSIGHTS_ID=$APP_INSIGHTS_ID +ENV APP_INSIGHTS_ID=$APP_INSIGHTS_ID RUN go build -v -o controller.exe -ldflags="-X main.version=%VERSION% -X main.applicationInsightsID=%APP_INSIGHTS_ID%" .\controller RUN go build -v -o captureworkload.exe -ldflags="-X main.version=%VERSION% -X main.applicationInsightsID=%APP_INSIGHTS_ID%" .\captureworkload +FROM --platform=windows/amd64 ${BUILDER_IMAGE} as pktmon-builder +WORKDIR C:\\retina FROM --platform=windows/amd64 mcr.microsoft.com/windows/nanoserver:ltsc2022 as final ADD https://github.com/microsoft/etl2pcapng/releases/download/v1.10.0/etl2pcapng.exe /etl2pcapng.exe SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'Continue';"] COPY --from=builder C:\\retina\\controller.exe controller.exe +COPY --from=pktmon-builder C:\\pktmon\\controller-pktmon.exe controller-pktmon.exe COPY --from=builder C:\\retina\\captureworkload.exe captureworkload.exe CMD ["controller.exe"] diff --git a/pkg/metrics/types_windows.go b/pkg/metrics/types_windows.go index 71f80fe0b1..43eb75daa6 100644 --- a/pkg/metrics/types_windows.go +++ b/pkg/metrics/types_windows.go @@ -6,20 +6,15 @@ import ( "github.com/cilium/cilium/api/v1/flow" ) -func GetDropTypeFlowDropReason(dr flow.DropReason) DropReasonType { - if v, ok := dropReasons[uint32(dr)]; ok { - return v.Reason - } - - return fmt.Sprintf("UnknownDropReason(%d)", dr) +func GetDropTypeFlowDropReason(dr flow.DropReason) string { + return dr.String() } func GetDropReason(reason uint32) DropReasonType { if v, ok := dropReasons[reason]; ok { return v.Reason } - - return fmt.Sprintf("UnknownDropReason(%d)", reason) + return Drop_Unknown } func (d DropReasonType) String() string { @@ -76,7 +71,7 @@ var dropReasons = map[uint32]DropReasonWin{ 38: {Drop_LowPower, "Drop_LowPower"}, // - //Generalerrors + // Generalerrors // 201: {Drop_Pause, "Drop_Pause"}, 202: {Drop_Reset, "Drop_Reset"}, @@ -107,7 +102,7 @@ var dropReasons = map[uint32]DropReasonWin{ 228: {Drop_SteeringMismatch, "Drop_SteeringMismatch"}, // - //NetVscerrors + // NetVscerrors // 401: {Drop_MicroportError, "Drop_MicroportError"}, 402: {Drop_VfNotReady, "Drop_VfNotReady"}, @@ -115,7 +110,7 @@ var dropReasons = map[uint32]DropReasonWin{ 404: {Drop_VMBusError, "Drop_VMBusError"}, // - //TcpipFLerrors + // TcpipFLerrors // 601: {Drop_FL_LoopbackPacket, "Drop_FL_LoopbackPacket"}, 602: {Drop_FL_InvalidSnapHeader, "Drop_FL_InvalidSnapHeader"}, @@ -134,7 +129,7 @@ var dropReasons = map[uint32]DropReasonWin{ 615: {Drop_FL_FlsNpiClientDrop, "Drop_FL_FlsNpiClientDrop"}, // - //VFPerrors + // VFPerrors // 701: {Drop_ArpGuard, "Drop_ArpGuard"}, 702: {Drop_ArpLimiter, "Drop_ArpLimiter"}, @@ -157,7 +152,7 @@ var dropReasons = map[uint32]DropReasonWin{ 719: {Drop_NicSuspended, "Drop_NicSuspended"}, // - //TcpipNLerrors + // TcpipNLerrors // 901: {Drop_NL_BadSourceAddress, "Drop_NL_BadSourceAddress"}, 902: {Drop_NL_NotLocallyDestined, "Drop_NL_NotLocallyDestined"}, @@ -268,7 +263,7 @@ var dropReasons = map[uint32]DropReasonWin{ 1002: {Drop_NL_SwUsoFailure, "Drop_NL_SwUsoFailure"}, // - //INETdiscardreasons + // INETdiscardreasons // 1200: {Drop_INET_SourceUnspecified, "Drop_INET_SourceUnspecified"}, 1201: {Drop_INET_DestinationMulticast, "Drop_INET_DestinationMulticast"}, @@ -305,7 +300,7 @@ var dropReasons = map[uint32]DropReasonWin{ 1232: {Drop_INET_AcceptRedirection, "Drop_INET_AcceptRedirection"}, // - //SlbmuxError + // SlbmuxError // 1301: {Drop_SlbMux_ParsingFailure, "Drop_SlbMux_ParsingFailure"}, 1302: {Drop_SlbMux_FirstFragmentMiss, "Drop_SlbMux_FirstFragmentMiss"}, @@ -336,7 +331,7 @@ var dropReasons = map[uint32]DropReasonWin{ 1327: {Drop_SlbMux_UnableToHandleRedirect, "Drop_SlbMux_UnableToHandleRedirect"}, // - //IpsecErrors + // IpsecErrors // 1401: {Drop_Ipsec_BadSpi, "Drop_Ipsec_BadSpi"}, 1402: {Drop_Ipsec_SALifetimeExpired, "Drop_Ipsec_SALifetimeExpired"}, @@ -358,7 +353,7 @@ var dropReasons = map[uint32]DropReasonWin{ 1418: {Drop_Ipsec_Unsuccessful, "Drop_Ipsec_Unsuccessful"}, // - //NetCxDropReasons + // NetCxDropReasons // 1501: {Drop_NetCx_NetPacketLayoutParseFailure, "Drop_NetCx_NetPacketLayoutParseFailure"}, 1502: {Drop_NetCx_SoftwareChecksumFailure, "Drop_NetCx_SoftwareChecksumFailure"}, @@ -369,13 +364,13 @@ var dropReasons = map[uint32]DropReasonWin{ 1507: {Drop_NetCx_BufferBounceFailureAndPacketIgnore, "Drop_NetCx_BufferBounceFailureAndPacketIgnore"}, // - //Httperrors3000-4000. - //Thesemustbeinsyncwithcmd\resource.h + // Httperrors3000-4000. + // Thesemustbeinsyncwithcmd\resource.h // 3000: {Drop_Http_Begin, "Drop_Http_Begin"}, // - //UlErrors + // UlErrors // 3001: {Drop_Http_UlError_Begin, "Drop_Http_UlError_Begin"}, 3002: {Drop_Http_UlError, "Drop_Http_UlError"}, @@ -412,7 +407,7 @@ var dropReasons = map[uint32]DropReasonWin{ 3030: {Drop_Http_UlError_End, "Drop_Http_UlError_End"}, // - //Stream-specificfaultcodes. + // Stream-specificfaultcodes. // 3400: {Drop_Http_UxDuoFaultBegin, "Drop_Http_UxDuoFaultBegin"}, @@ -481,12 +476,12 @@ var dropReasons = map[uint32]DropReasonWin{ 3463: {Drop_Http_UxDuoFaultEnd, "Drop_Http_UxDuoFaultEnd"}, // - //WSKlayerdrops + // WSKlayerdrops // 3600: {Drop_Http_ReceiveSuppressed, "Drop_Http_ReceiveSuppressed"}, // - //Http/SSLlayerdrops + // Http/SSLlayerdrops // 3800: {Drop_Http_Generic, "Drop_Http_Generic"}, 3801: {Drop_Http_InvalidParameter, "Drop_Http_InvalidParameter"}, diff --git a/pkg/plugin/windows/pktmon/pktmon_parsing_windows.go b/pkg/plugin/windows/pktmon/pktmon_parsing_windows.go deleted file mode 100644 index 9c074014c4..0000000000 --- a/pkg/plugin/windows/pktmon/pktmon_parsing_windows.go +++ /dev/null @@ -1,116 +0,0 @@ -package pktmon - -import ( - "fmt" - - "github.com/cilium/cilium/api/v1/flow" - "github.com/google/gopacket" - "github.com/google/gopacket/layers" - "github.com/microsoft/retina/pkg/utils" - "go.uber.org/zap" -) - -func (w *WinPktMon) getUnixTimestamp(StreamMetaData C.PACKETMONITOR_STREAM_METADATA_RETINA) int64 { - // use C conversion to pull Windows timestamp - var timestampint C.longlong - C.LargeIntegerToInt(StreamMetaData.TimeStamp, ×tampint) - timestamp := int64(timestampint) - - // convert from windows to unix time - var epochDifference int64 = 116444736000000000 - return (timestamp - epochDifference) / 10000000 -} - -func (w *WinPktMon) getVerdict(StreamMetaData C.PACKETMONITOR_STREAM_METADATA_RETINA) flow.Verdict { - if StreamMetaData.DropReason != 0 { - return flow.Verdict_DROPPED - } - return flow.Verdict_FORWARDED -} - -func (w *WinPktMon) parseL4(packet gopacket.Packet) (*layers.IPv4, error) { - ip := &layers.IPv4{} - if ipLayer := packet.Layer(layers.LayerTypeIPv4); ipLayer != nil { - ip, _ = ipLayer.(*layers.IPv4) - } else { - return nil, fmt.Errorf("Failed to parse IP layer %w", ErrFailedToParseWithGoPacket) - } - return ip, nil -} - -func (w *WinPktMon) parseTCP(packet gopacket.Packet) (*layers.TCP, error) { - tcp := &layers.TCP{} - if tcpLayer := packet.Layer(layers.LayerTypeTCP); tcpLayer != nil { - tcp, _ = tcpLayer.(*layers.TCP) - } else { - return nil, fmt.Errorf("Failed to parse TCP layer %w", ErrFailedToParseWithGoPacket) - } - return tcp, nil -} - -func (w *WinPktMon) parseUDP(packet gopacket.Packet) (*layers.UDP, error) { - udp := &layers.UDP{} - if udpLayer := packet.Layer(layers.LayerTypeUDP); udpLayer != nil { - udp, _ = udpLayer.(*layers.UDP) - } else { - return nil, fmt.Errorf("Failed to parse UDP layer %w", ErrFailedToParseWithGoPacket) - } - return udp, nil -} - -func (w *WinPktMon) parsePacket(buffer []byte, StreamMetaData C.PACKETMONITOR_STREAM_METADATA_RETINA) (gopacket.Packet, error) { - var packet gopacket.Packet - // Ethernet - if StreamMetaData.PacketType == 1 { - packet = gopacket.NewPacket(buffer, layers.LayerTypeEthernet, gopacket.NoCopy) - - // IPv4 - } else if StreamMetaData.PacketType == 3 { - packet = gopacket.NewPacket(buffer, layers.LayerTypeIPv4, gopacket.NoCopy) - } else { - return nil, ErrUnknownPacketType - } - return packet, nil -} - -func (w *WinPktMon) ParseDNS(fl *flow.Flow, metadata *utils.RetinaMetadata, packet gopacket.Packet) error { - dns := &layers.DNS{} - if dnsLayer := packet.Layer(layers.LayerTypeDNS); dnsLayer != nil { - dns, _ = dnsLayer.(*layers.DNS) - } else { - return nil - } - - if dns != nil { - //fmt.Printf("qType %d\n", packet.dns.OpCode) - var qtype string - switch dns.OpCode { - case layers.DNSOpCodeQuery: - qtype = "Q" - case layers.DNSOpCodeStatus: - qtype = "R" - default: - qtype = "U" - } - - var as, qs []string - for _, a := range dns.Answers { - if a.IP != nil { - as = append(as, a.IP.String()) - } - } - for _, q := range dns.Questions { - qs = append(qs, string(q.Name)) - } - - var query string - if len(dns.Questions) > 0 { - query = string(dns.Questions[0].Name[:]) - } - w.l.Debug("DNS packet", zap.String("query", query), zap.String("qtype", qtype), zap.String("answers", fmt.Sprintf("%v", as))) - fl.Verdict = utils.Verdict_DNS - utils.AddDNSInfo(fl, metadata, qtype, uint32(dns.ResponseCode), query, []string{qtype}, len(as), as) - } - - return nil -} diff --git a/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go b/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go index 03b9f53b66..08e7a6f013 100644 --- a/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go +++ b/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go @@ -4,8 +4,9 @@ import ( "context" "errors" "fmt" - golog "log" + "os/exec" + observerv1 "github.com/cilium/cilium/api/v1/observer" v1 "github.com/cilium/cilium/pkg/hubble/api/v1" kcfg "github.com/microsoft/retina/pkg/config" "github.com/microsoft/retina/pkg/enricher" @@ -13,10 +14,15 @@ import ( "github.com/microsoft/retina/pkg/metrics" "github.com/microsoft/retina/pkg/plugin/api" "github.com/microsoft/retina/pkg/utils" + "go.uber.org/zap" + "go.uber.org/zap/zapio" + "google.golang.org/grpc" ) var ( ErrNilEnricher error = errors.New("enricher is nil") + client *pktMonClient + socket = "/tmp/retina-pktmon.sock" ) const ( @@ -28,14 +34,11 @@ type PktMonPlugin struct { externalChannel chan *v1.Event pkt PktMon l *log.ZapLogger + pktmonCmd *exec.Cmd + stdWriter *zapio.Writer } func (p *PktMonPlugin) Init() error { - pktmonlogger := log.Logger().Named(Name) - p.pkt = &WinPktMon{ - l: pktmonlogger, - } - p.l = pktmonlogger return nil } @@ -44,18 +47,68 @@ func (p *PktMonPlugin) Name() string { return "pktmon" } +type pktMonClient struct { + observerv1.ObserverClient +} + +func NewClient() (*pktMonClient, error) { + retryPolicy := `{ + "methodConfig": [{ + "waitForReady": true, + "retryPolicy": { + "MaxAttempts": 4, + "InitialBackoff": ".01s", + "MaxBackoff": ".01s", + "BackoffMultiplier": 1.0, + "RetryableStatusCodes": [ "UNAVAILABLE" ] + } + }] + }` + + conn, err := grpc.Dial(fmt.Sprintf("%s:%s", "unix", socket), grpc.WithInsecure(), grpc.WithDefaultServiceConfig(retryPolicy)) + if err != nil { + return nil, err + } + + return &pktMonClient{observerv1.NewObserverClient(conn)}, nil +} + func (p *PktMonPlugin) Start(ctx context.Context) error { - fmt.Printf("setting up enricher since pod level is enabled \n") + p.stdWriter = &zapio.Writer{Log: p.l.Logger, Level: zap.InfoLevel} + defer p.stdWriter.Close() + p.pktmonCmd = exec.Command("controller-pktmon.exe") + p.pktmonCmd.Args = append(p.pktmonCmd.Args, "--socketpath", socket) + p.pktmonCmd.Stdout = p.stdWriter + p.pktmonCmd.Stderr = p.stdWriter + + p.l.Info("setting up enricher since pod level is enabled \n") p.enricher = enricher.Instance() if p.enricher == nil { return ErrNilEnricher } - // calling packet capture routine concurrently - golog.Println("Starting (go)") - err := p.pkt.Initialize() + p.l.Info("calling start on pktmon stream server", zap.String("cmd", p.pktmonCmd.String())) + err := p.pktmonCmd.Start() + if err != nil { + return fmt.Errorf("failed to start pktmon stream server: %w", err) + } + + p.l.Info("creating pktmon client") + fn := func() error { + client, err = NewClient() + if err != nil { + return err + } + return nil + } + err = utils.Retry(fn, 10) + if err != nil { + return fmt.Errorf("failed to create pktmon client: %w", err) + } + + str, err := client.GetFlows(ctx, &observerv1.GetFlowsRequest{}) if err != nil { - return fmt.Errorf("Failed to initialize pktmon: %v", err) + return fmt.Errorf("failed to open pktmon stream: %w", err) } for { @@ -63,27 +116,20 @@ func (p *PktMonPlugin) Start(ctx context.Context) error { case <-ctx.Done(): return fmt.Errorf("pktmon context cancelled: %v", ctx.Err()) default: - fl, meta, packet, err := p.pkt.GetNextPacket() - if errors.Is(err, ErrNotSupported) { - continue - } - + event, err := str.Recv() if err != nil { - golog.Printf("Error getting packet: %v\n", err) - continue + p.l.Error("failed to receive pktmon event", zap.Error(err)) } - // do this here instead of GetNextPacket to keep higher level - // packet parsing out of L4 parsing - err = p.pkt.ParseDNS(fl, meta, packet) - if err != nil { - golog.Printf("Error parsing DNS: %v\n ", err) + fl := event.GetFlow() + if fl == nil { + p.l.Error("received nil flow") continue } ev := &v1.Event{ - Event: fl, - Timestamp: fl.Time, + Event: event.GetFlow(), + Timestamp: event.GetFlow().Time, } if p.enricher != nil { @@ -112,10 +158,15 @@ func (p *PktMonPlugin) SetupChannel(ch chan *v1.Event) error { } func New(cfg *kcfg.Config) api.Plugin { - return &PktMonPlugin{} + return &PktMonPlugin{ + l: log.Logger().Named(Name), + } } func (p *PktMonPlugin) Stop() error { + //p.pktmonCmd.Process.Kill() + //p.pktmonCmd.Wait() + //p.stdWriter.Close() return nil } diff --git a/pkg/plugin/windows/pktmon/pktmon_windows.go b/pkg/plugin/windows/pktmon/pktmon_windows.go deleted file mode 100644 index 7585b9375c..0000000000 --- a/pkg/plugin/windows/pktmon/pktmon_windows.go +++ /dev/null @@ -1,160 +0,0 @@ -package pktmon - -// #cgo CFLAGS: -I packetmonitorsupport -// #cgo LDFLAGS: -L packetmonitorsupport -// #cgo LDFLAGS: -lpktmonapi -lws2_32 -// -// #include "PacketMonitor.h" -// #include "packetmonitorpacket.h" -// #include "packetmonitorsupportutil.h" -// #include "packetmonitorsupport.h" -// #include "packetmonitorsupport.c" -// #include "packetmonitorpacketparse.c" -import "C" -import ( - "errors" - "fmt" - golog "log" - "unsafe" - - "github.com/cilium/cilium/api/v1/flow" - "github.com/google/gopacket" - "github.com/google/gopacket/layers" - "github.com/microsoft/retina/pkg/log" - "github.com/microsoft/retina/pkg/metrics" - "github.com/microsoft/retina/pkg/utils" -) - -var ( - ErrFailedToParseWithGoPacket error = fmt.Errorf("Failed to parse with gopacket") - ErrNotSupported error = fmt.Errorf("Not supported") - ErrFailedToStartPacketCapture error = fmt.Errorf("Failed to start pktmon packet capture") - ErrUnknownPacketType error = fmt.Errorf("Unknown packet type") - - VarDefaultBufferMultiplier = 10 - - TruncationSize = 128 -) - -type WinPktMon struct { - l *log.ZapLogger -} - -func (w *WinPktMon) Initialize() error { - var UserContext C.PACKETMONITOR_STREAM_EVENT_INFO - - // calling packet capture routine concurrently - fmt.Println("Starting (go)") - trunc := C.int(TruncationSize) - result := C.InitializePacketCapture(unsafe.Pointer(&UserContext), C.int(VarDefaultBufferMultiplier), trunc) - if result != 0 { - return fmt.Errorf("Error code %d, %w ", result, ErrFailedToStartPacketCapture) - } - - return nil -} - -func (w *WinPktMon) GetNextPacket() (*flow.Flow, *utils.RetinaMetadata, gopacket.Packet, error) { - buffer := make([]byte, 5000) - var bufferSize C.int = 5000 // Windows LSO MTU size, Pktmon ring buffers size in Pktmon dll is (64 * 4kb) - - // Three memory buffers - // - Streaming feature descripter buffer - // - Descripter buffer - // - actual packet buffer (64 * 4kb) - var payloadLength C.int = 0 - var StreamMetaData C.PACKETMONITOR_STREAM_METADATA_RETINA - var PacketHeaderInfo C.PACKETMONITOR_PACKET_HEADER_INFO - var MissedPacketsWrite C.int = 0 // packets getting missed in the driver - var MissedPacketsRead C.int = 0 // packets getting missed in the driver - - // Note: if packet header info of nil is passed, then it wont fall back on to C parsing - C.GetNextPacket((*C.uchar)(unsafe.Pointer(&buffer[0])), bufferSize, &payloadLength, &StreamMetaData, nil, &MissedPacketsWrite, &MissedPacketsRead) - - if int(MissedPacketsRead) > 0 { - golog.Printf("Missed packets read: %d\n", int(MissedPacketsRead)) - } - - if int(MissedPacketsWrite) > 0 { - golog.Printf("Missed packets write: %d\n", int(MissedPacketsWrite)) - } - - packet, err := w.parsePacket(buffer, StreamMetaData) - if err != nil { - if errors.Is(err, ErrFailedToParseWithGoPacket) { - - // we will hit this if failing to parse with gopacket, and fall back to C parsing. - // However in the current impliementation, pulling source/dest info via C libs is nontrivial. - // To go through C parsing, pass the PacketHeaderInfo struct to the above C.GetNextPacket - // so marking this tombstone as todo and erroring out. - if PacketHeaderInfo.ParseErrorCode == 0 { - return nil, nil, nil, fmt.Errorf("failed to parse with gopacket, using C, but address not impl(src port %d, dst port %d, proto :%d)", PacketHeaderInfo.PortLocal, PacketHeaderInfo.PortRemote, PacketHeaderInfo.IpProtocol) - - } else { - status := PacketHeaderInfo.ParseErrorCode - return nil, nil, nil, fmt.Errorf("error code %d: %s, %w", PacketHeaderInfo.ParseErrorCode, C.GoString(C.ParsePacketStatusToString(status)), ErrNotSupported) - } - } else { - return nil, nil, nil, fmt.Errorf("failed to parse with gopacket: %w", err) - } - } - - // windows timestamp to unix timestamp - unixTime := w.getUnixTimestamp(StreamMetaData) - - // get src/dst ip, proto - ip, err := w.parseL4(packet) - if err != nil { - return nil, nil, nil, fmt.Errorf("failed to parse IP layer: %w", err) - } - - // get src/dst ports from protocol layers - tcp, udp := &layers.TCP{}, &layers.UDP{} - srcPort, dstPort := uint32(0), uint32(0) - if ip.Protocol == layers.IPProtocolTCP { - tcp, err = w.parseTCP(packet) - if err != nil { - return nil, nil, nil, fmt.Errorf("failed to parse TCP layer: %w", err) - } - srcPort = uint32(tcp.SrcPort) - dstPort = uint32(tcp.DstPort) - } else if ip.Protocol == layers.IPProtocolUDP { - udp, err = w.parseUDP(packet) - if err != nil { - return nil, nil, nil, fmt.Errorf("failed to parse UDP layer: %w", err) - } - srcPort = uint32(udp.SrcPort) - dstPort = uint32(udp.DstPort) - } - - // get verdict, forwarded, dropped, etc - verdict := w.getVerdict(StreamMetaData) - if verdict == flow.Verdict_DROPPED { - fmt.Printf("packet dropped from %s:%d to %s:%d, proto: %d, \t dropreason %s\n", ip.SrcIP, srcPort, ip.DstIP, dstPort, ip.Protocol, metrics.GetDropReason(uint32(StreamMetaData.DropReason))) - } - - // create the flow using utils - fl := utils.ToFlow( - int64(unixTime), // timestamp - ip.SrcIP, - ip.DstIP, - srcPort, - dstPort, - uint8(ip.Protocol), - uint32(StreamMetaData.ComponentId), // observationPoint - verdict, // flow.Verdict - ) - - // add TCP flags now that we have flow - if ip.Protocol == layers.IPProtocolTCP { - utils.AddTcpFlagsBool(fl, tcp.SYN, tcp.ACK, tcp.FIN, tcp.RST, tcp.PSH, tcp.URG) - } - - // add metadata - meta := &utils.RetinaMetadata{ - Bytes: uint64(payloadLength), - DropReason: metrics.GetDropReason(), - } - - return fl, meta, packet, nil -} diff --git a/pkg/plugin/windows/pktmon/types.go b/pkg/plugin/windows/pktmon/types.go deleted file mode 100644 index a7b6c4ab95..0000000000 --- a/pkg/plugin/windows/pktmon/types.go +++ /dev/null @@ -1,43 +0,0 @@ -package pktmon - -import ( - "net" - - "github.com/cilium/cilium/api/v1/flow" - "github.com/google/gopacket" - "github.com/google/gopacket/layers" - "github.com/microsoft/retina/pkg/utils" -) - -type PktMon interface { - Initialize() error - GetNextPacket() (*flow.Flow, *utils.RetinaMetadata, gopacket.Packet, error) - ParseDNS(*flow.Flow, *utils.RetinaMetadata, gopacket.Packet) error -} - -type MockPktMon struct{} - -func (m *MockPktMon) Initialize() error { - return nil -} - -func (m *MockPktMon) GetNextPacket() (gopacket.Packet, *Metadata, error) { - ip := &layers.IPv4{ - SrcIP: net.IP{1, 2, 3, 4}, - DstIP: net.IP{5, 6, 7, 8}, - // etc... - } - buf := gopacket.NewSerializeBuffer() - opts := gopacket.SerializeOptions{} // See SerializeOptions for more details. - err := ip.SerializeTo(buf, opts) - return nil, nil, err -} - -type Metadata struct { - Timestamp int64 - DropReason uint32 - ComponentID uint32 - PayloadLength uint64 - Verdict flow.Verdict - MissedPackets uint32 -} diff --git a/pkg/utils/flow_utils.go b/pkg/utils/flow_utils.go index 700ac08589..445616d813 100644 --- a/pkg/utils/flow_utils.go +++ b/pkg/utils/flow_utils.go @@ -286,13 +286,11 @@ func AddDropReason(f *flow.Flow, meta *RetinaMetadata, dropReason uint32) { // Retina drop reasons are different from the drop reasons available in flow library. // We map the ones available in flow library to the ones available in Retina. // Rest are set to UNKNOWN. The details are added in the metadata. - - f.DropReasonDesc = GetDropReasonDesc(meta.GetDropReason()) - f.EventType = &flow.CiliumEventType{ Type: int32(api.MessageTypeDrop), SubType: int32(f.GetDropReasonDesc()), // This is the drop reason. } + f.DropReasonDesc = GetDropReasonDesc(meta.GetDropReason()) } func DropReasonDescription(f *flow.Flow) string { diff --git a/pkg/utils/utils_windows.go b/pkg/utils/utils_windows.go index 975ea4e6e5..08c785a34f 100644 --- a/pkg/utils/utils_windows.go +++ b/pkg/utils/utils_windows.go @@ -3,12 +3,16 @@ package utils import ( + "fmt" + "github.com/cilium/cilium/api/v1/flow" ) func GetDropReasonDesc(dr DropReason) flow.DropReason { - switch dr { //nolint:exhaustive // We are handling all the cases. + fmt.Printf("getting drop reason description for %v\n", dr) + switch dr { case DropReason_Drop_INET_FinWait2: + fmt.Printf("setting drop as %v\n", flow.DropReason_UNKNOWN_CONNECTION_TRACKING_STATE) return flow.DropReason_UNKNOWN_CONNECTION_TRACKING_STATE default: return flow.DropReason_DROP_REASON_UNKNOWN From bc002a6953607b732bcca90858d32ee9a27cdf5a Mon Sep 17 00:00:00 2001 From: Mathew Merrick Date: Tue, 28 May 2024 17:28:00 -0700 Subject: [PATCH 09/13] plugin server management --- pkg/module/metrics/drops.go | 2 +- .../windows/pktmon/pktmon_plugin_windows.go | 70 ++++++++++++------- pkg/utils/common.go | 1 + pkg/utils/utils_windows.go | 2 +- 4 files changed, 48 insertions(+), 27 deletions(-) diff --git a/pkg/module/metrics/drops.go b/pkg/module/metrics/drops.go index 6ebfb8de4c..833f9c2d20 100644 --- a/pkg/module/metrics/drops.go +++ b/pkg/module/metrics/drops.go @@ -141,7 +141,7 @@ func (d *DropCountMetrics) processLocalCtxFlow(flow *v1.Flow) { if labelValuesMap == nil { return } - dropReason := metrics.GetDropTypeFlowDropReason(flow.GetDropReasonDesc()) + dropReason := utils.DropReasonDescription(flow) // Ingress values if l := len(labelValuesMap[ingress]); l > 0 { diff --git a/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go b/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go index 08e7a6f013..8de3185651 100644 --- a/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go +++ b/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go @@ -20,26 +20,27 @@ import ( ) var ( - ErrNilEnricher error = errors.New("enricher is nil") - client *pktMonClient - socket = "/tmp/retina-pktmon.sock" + ErrNilEnricher error = errors.New("enricher is nil") + ErrUnexpectedExit error = errors.New("unexpected exit") + + socket = "/tmp/retina-pktmon.sock" ) const ( - Name = "pktmon" + Name = "pktmon" + connectionRetryAttempts = 3 ) type PktMonPlugin struct { enricher enricher.EnricherInterface externalChannel chan *v1.Event - pkt PktMon l *log.ZapLogger pktmonCmd *exec.Cmd stdWriter *zapio.Writer + errWriter *zapio.Writer } func (p *PktMonPlugin) Init() error { - return nil } @@ -67,19 +68,20 @@ func NewClient() (*pktMonClient, error) { conn, err := grpc.Dial(fmt.Sprintf("%s:%s", "unix", socket), grpc.WithInsecure(), grpc.WithDefaultServiceConfig(retryPolicy)) if err != nil { - return nil, err + return nil, fmt.Errorf("failed to dial pktmon server: %w", err) } return &pktMonClient{observerv1.NewObserverClient(conn)}, nil } -func (p *PktMonPlugin) Start(ctx context.Context) error { +func (p *PktMonPlugin) RunPktMonServer() error { p.stdWriter = &zapio.Writer{Log: p.l.Logger, Level: zap.InfoLevel} + p.errWriter = &zapio.Writer{Log: p.l.Logger, Level: zap.ErrorLevel} defer p.stdWriter.Close() p.pktmonCmd = exec.Command("controller-pktmon.exe") p.pktmonCmd.Args = append(p.pktmonCmd.Args, "--socketpath", socket) p.pktmonCmd.Stdout = p.stdWriter - p.pktmonCmd.Stderr = p.stdWriter + p.pktmonCmd.Stderr = p.errWriter p.l.Info("setting up enricher since pod level is enabled \n") p.enricher = enricher.Instance() @@ -88,37 +90,56 @@ func (p *PktMonPlugin) Start(ctx context.Context) error { } p.l.Info("calling start on pktmon stream server", zap.String("cmd", p.pktmonCmd.String())) - err := p.pktmonCmd.Start() + + // block this thread, and should it ever return, it's a problem + err := p.pktmonCmd.Run() if err != nil { - return fmt.Errorf("failed to start pktmon stream server: %w", err) + return fmt.Errorf("pktmon server exited when it should not have: %w", err) } - p.l.Info("creating pktmon client") + // we never want to return happy from this + return fmt.Errorf("pktmon server exited unexpectedly: %w", ErrUnexpectedExit) +} + +func (p *PktMonPlugin) Start(ctx context.Context) error { + ctx, cancel := context.WithCancel(ctx) + go func() { + err := p.RunPktMonServer() + if err != nil { + p.l.Error("failed to run pktmon server", zap.Error(err)) + } + + // if the pktmon server process exits, cancel the context, we need to crash + cancel() + }() + + var str observerv1.Observer_GetFlowsClient fn := func() error { - client, err = NewClient() + p.l.Info("creating pktmon client") + client, err := NewClient() if err != nil { return err } + + str, err = client.GetFlows(ctx, &observerv1.GetFlowsRequest{}) + if err != nil { + return fmt.Errorf("failed to open pktmon stream: %w", err) + } return nil } - err = utils.Retry(fn, 10) + err := utils.Retry(fn, connectionRetryAttempts) if err != nil { return fmt.Errorf("failed to create pktmon client: %w", err) } - str, err := client.GetFlows(ctx, &observerv1.GetFlowsRequest{}) - if err != nil { - return fmt.Errorf("failed to open pktmon stream: %w", err) - } - for { select { case <-ctx.Done(): - return fmt.Errorf("pktmon context cancelled: %v", ctx.Err()) + return fmt.Errorf("pktmon context cancelled: %w", ctx.Err()) default: event, err := str.Recv() if err != nil { - p.l.Error("failed to receive pktmon event", zap.Error(err)) + return fmt.Errorf("failed to receive pktmon event: %w", err) } fl := event.GetFlow() @@ -129,7 +150,7 @@ func (p *PktMonPlugin) Start(ctx context.Context) error { ev := &v1.Event{ Event: event.GetFlow(), - Timestamp: event.GetFlow().Time, + Timestamp: event.GetFlow().GetTime(), } if p.enricher != nil { @@ -164,9 +185,8 @@ func New(cfg *kcfg.Config) api.Plugin { } func (p *PktMonPlugin) Stop() error { - //p.pktmonCmd.Process.Kill() - //p.pktmonCmd.Wait() - //p.stdWriter.Close() + // p.pktmonCmd.Wait() + // p.stdWriter.Close() return nil } diff --git a/pkg/utils/common.go b/pkg/utils/common.go index aef4de75aa..d5be149099 100644 --- a/pkg/utils/common.go +++ b/pkg/utils/common.go @@ -50,6 +50,7 @@ func Retry(f func() error, retry int) (err error) { return nil } t := int64(math.Pow(2, float64(i))) + fmt.Printf("failed with %v, retrying in %d seconds...\n", err, t) time.Sleep(time.Duration(t) * time.Second) } return err diff --git a/pkg/utils/utils_windows.go b/pkg/utils/utils_windows.go index 08c785a34f..606bebceb4 100644 --- a/pkg/utils/utils_windows.go +++ b/pkg/utils/utils_windows.go @@ -10,7 +10,7 @@ import ( func GetDropReasonDesc(dr DropReason) flow.DropReason { fmt.Printf("getting drop reason description for %v\n", dr) - switch dr { + switch dr { //nolint:exhaustive // We are handling all the cases. case DropReason_Drop_INET_FinWait2: fmt.Printf("setting drop as %v\n", flow.DropReason_UNKNOWN_CONNECTION_TRACKING_STATE) return flow.DropReason_UNKNOWN_CONNECTION_TRACKING_STATE From 2a8c4f076be095a0fd2a075df5c35f39e39af124 Mon Sep 17 00:00:00 2001 From: Mathew Merrick Date: Mon, 1 Jul 2024 16:32:31 -0700 Subject: [PATCH 10/13] appinsights --- .pipelines/cg-pipeline.yaml | 2 +- .../windows/pktmon/pktmon_plugin_windows.go | 45 +++++++++++++------ 2 files changed, 32 insertions(+), 15 deletions(-) diff --git a/.pipelines/cg-pipeline.yaml b/.pipelines/cg-pipeline.yaml index 97c2692ac6..9c5a000bdf 100644 --- a/.pipelines/cg-pipeline.yaml +++ b/.pipelines/cg-pipeline.yaml @@ -189,7 +189,7 @@ stages: targetType: "inline" script: | Import-Module -Name "$(Build.SourcesDirectory)\windows\docker\DockerBuildModule.psm1" -Force - Build-RetinaAgentImage -fullBuilderImageName $(WINDOWS_BUILDER_IMAGE) -registry $(BUILD_REGISTRY) + Build-RetinaAgentImage -fullBuilderImageName $(WINDOWS_BUILDER_IMAGE) -registry $(BUILD_REGISTRY) -appInsightsID $(PROD_AI) Save-Image -imageName retina-agent -registry $(BUILD_REGISTRY) - task: PublishBuildArtifacts@1 diff --git a/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go b/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go index 8de3185651..b47e871e21 100644 --- a/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go +++ b/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go @@ -4,8 +4,10 @@ import ( "context" "errors" "fmt" + "os" "os/exec" + "github.com/cilium/cilium/api/v1/flow" observerv1 "github.com/cilium/cilium/api/v1/observer" v1 "github.com/cilium/cilium/pkg/hubble/api/v1" kcfg "github.com/microsoft/retina/pkg/config" @@ -17,11 +19,12 @@ import ( "go.uber.org/zap" "go.uber.org/zap/zapio" "google.golang.org/grpc" + "google.golang.org/grpc/credentials/insecure" ) var ( - ErrNilEnricher error = errors.New("enricher is nil") - ErrUnexpectedExit error = errors.New("unexpected exit") + ErrNilEnricher = errors.New("enricher is nil") + ErrUnexpectedExit = errors.New("unexpected exit") socket = "/tmp/retina-pktmon.sock" ) @@ -31,7 +34,7 @@ const ( connectionRetryAttempts = 3 ) -type PktMonPlugin struct { +type Plugin struct { enricher enricher.EnricherInterface externalChannel chan *v1.Event l *log.ZapLogger @@ -40,11 +43,11 @@ type PktMonPlugin struct { errWriter *zapio.Writer } -func (p *PktMonPlugin) Init() error { +func (p *Plugin) Init() error { return nil } -func (p *PktMonPlugin) Name() string { +func (p *Plugin) Name() string { return "pktmon" } @@ -66,7 +69,7 @@ func NewClient() (*pktMonClient, error) { }] }` - conn, err := grpc.Dial(fmt.Sprintf("%s:%s", "unix", socket), grpc.WithInsecure(), grpc.WithDefaultServiceConfig(retryPolicy)) + conn, err := grpc.Dial(fmt.Sprintf("%s:%s", "unix", socket), grpc.WithTransportCredentials(insecure.NewCredentials()), grpc.WithDefaultServiceConfig(retryPolicy)) if err != nil { return nil, fmt.Errorf("failed to dial pktmon server: %w", err) } @@ -74,12 +77,13 @@ func NewClient() (*pktMonClient, error) { return &pktMonClient{observerv1.NewObserverClient(conn)}, nil } -func (p *PktMonPlugin) RunPktMonServer() error { +func (p *Plugin) RunPktMonServer() error { p.stdWriter = &zapio.Writer{Log: p.l.Logger, Level: zap.InfoLevel} p.errWriter = &zapio.Writer{Log: p.l.Logger, Level: zap.ErrorLevel} defer p.stdWriter.Close() p.pktmonCmd = exec.Command("controller-pktmon.exe") p.pktmonCmd.Args = append(p.pktmonCmd.Args, "--socketpath", socket) + p.pktmonCmd.Env = os.Environ() p.pktmonCmd.Stdout = p.stdWriter p.pktmonCmd.Stderr = p.errWriter @@ -101,7 +105,7 @@ func (p *PktMonPlugin) RunPktMonServer() error { return fmt.Errorf("pktmon server exited unexpectedly: %w", ErrUnexpectedExit) } -func (p *PktMonPlugin) Start(ctx context.Context) error { +func (p *Plugin) Start(ctx context.Context) error { ctx, cancel := context.WithCancel(ctx) go func() { err := p.RunPktMonServer() @@ -153,10 +157,23 @@ func (p *PktMonPlugin) Start(ctx context.Context) error { Timestamp: event.GetFlow().GetTime(), } + if fl.GetType() == flow.FlowType_L7 { + dns := fl.GetL7().GetDns() + if dns != nil { + query := dns.GetQuery() + ans := dns.GetIps() + if dns.GetQtypes()[0] == "Q" { + p.l.Sugar().Debugf("query from %s to %s: request %s\n", fl.GetIP().GetSource(), fl.GetIP().GetDestination(), query) + } else { + p.l.Sugar().Debugf("answer from %s to %s: result: %+v\n", fl.GetIP().GetSource(), fl.GetIP().GetDestination(), ans) + } + } + } + if p.enricher != nil { p.enricher.Write(ev) } else { - fmt.Printf("enricher is nil when writing\n ") + p.l.Error("enricher is nil when writing event") } // Write the event to the external channel. @@ -173,27 +190,27 @@ func (p *PktMonPlugin) Start(ctx context.Context) error { } } -func (p *PktMonPlugin) SetupChannel(ch chan *v1.Event) error { +func (p *Plugin) SetupChannel(ch chan *v1.Event) error { p.externalChannel = ch return nil } func New(cfg *kcfg.Config) api.Plugin { - return &PktMonPlugin{ + return &Plugin{ l: log.Logger().Named(Name), } } -func (p *PktMonPlugin) Stop() error { +func (p *Plugin) Stop() error { // p.pktmonCmd.Wait() // p.stdWriter.Close() return nil } -func (p *PktMonPlugin) Compile(ctx context.Context) error { +func (p *Plugin) Compile(ctx context.Context) error { return nil } -func (p *PktMonPlugin) Generate(ctx context.Context) error { +func (p *Plugin) Generate(ctx context.Context) error { return nil } From f95b9f73ac379ce7548fa8d5920041abbad6b70f Mon Sep 17 00:00:00 2001 From: Mathew Merrick Date: Tue, 2 Jul 2024 10:35:30 -0700 Subject: [PATCH 11/13] lints --- .github/workflows/images.yaml | 2 +- .golangci.yaml | 12 + NOTICE.txt | 50528 ++++++++-------- SUPPORT.md | 18 +- controller/Dockerfile.windows-native | 2 +- pkg/metrics/types_linux.go | 2 + .../windows/pktmon/pktmon_plugin_windows.go | 14 +- pkg/utils/flow_utils.go | 2 +- pkg/utils/utils_windows.go | 4 - windows/setkubeconfigpath.ps1 | 22 +- 10 files changed, 25307 insertions(+), 25299 deletions(-) diff --git a/.github/workflows/images.yaml b/.github/workflows/images.yaml index 6a30a25a1c..0643d4b653 100644 --- a/.github/workflows/images.yaml +++ b/.github/workflows/images.yaml @@ -102,7 +102,7 @@ jobs: IMAGE_NAMESPACE=${{ github.repository }} \ PLATFORM=${{ matrix.platform }}/${{ matrix.arch }} \ IMAGE_REGISTRY=${{ vars.ACR_NAME }} \ - YEAR=${{ matrix.year }} \ + WINDOWS_YEARS=${{ matrix.year }} \ BUILDX_ACTION=--push else make retina-image-win \ diff --git a/.golangci.yaml b/.golangci.yaml index 7f3cd015e7..41fa4cb1df 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -2,6 +2,18 @@ issues: max-same-issues: 0 max-issues-per-linter: 0 new-from-rev: origin/main + exclude-rules: + # some type names are caps/underscore to map OS primitive types + - path: pkg/metrics/types_windows.go + linters: + - revive + - gomnd + - var-naming + - path: pkg/metrics/types_linux.go + linters: + - revive + - gomnd + - var-naming linters: presets: - bugs diff --git a/NOTICE.txt b/NOTICE.txt index 573328fb76..32ccfb4a64 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -1,48 +1,48 @@ -NOTICES AND INFORMATION -Do Not Translate or Localize - -This software incorporates material from third parties. -Microsoft makes certain open source code available at https://3rdpartysource.microsoft.com, -or you may send a check or money order for US $5.00, including the product name, -the open source component name, platform, and version number, to: - -Source Code Compliance Team -Microsoft Corporation -One Microsoft Way -Redmond, WA 98052 -USA - -Notwithstanding any other terms, you may reverse engineer this software to the extent -required to debug changes to any libraries licensed under the GNU Lesser General Public License. - ---------------------------------------------------------- - -tslib 2.6.2 - 0BSD -https://www.typescriptlang.org/ - -Copyright (c) Microsoft Corporation - -Copyright (c) Microsoft Corporation. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@ampproject/remapping 2.2.1 - Apache-2.0 -https://github.com/ampproject/remapping#readme - - +NOTICES AND INFORMATION +Do Not Translate or Localize + +This software incorporates material from third parties. +Microsoft makes certain open source code available at https://3rdpartysource.microsoft.com, +or you may send a check or money order for US $5.00, including the product name, +the open source component name, platform, and version number, to: + +Source Code Compliance Team +Microsoft Corporation +One Microsoft Way +Redmond, WA 98052 +USA + +Notwithstanding any other terms, you may reverse engineer this software to the extent +required to debug changes to any libraries licensed under the GNU Lesser General Public License. + +--------------------------------------------------------- + +tslib 2.6.2 - 0BSD +https://www.typescriptlang.org/ + +Copyright (c) Microsoft Corporation + +Copyright (c) Microsoft Corporation. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@ampproject/remapping 2.2.1 - Apache-2.0 +https://github.com/ampproject/remapping#readme + + Apache License Version 2.0, January 2004 @@ -245,18 +245,18 @@ https://github.com/ampproject/remapping#readme WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/leb128 1.11.6 - Apache-2.0 -https://github.com/xtuc/webassemblyjs#readme - -Copyright 2012 The Obvious Corporation -Copyright 2012 The Obvious Corporation. http://obvious.com - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/leb128 1.11.6 - Apache-2.0 +https://github.com/xtuc/webassemblyjs#readme + +Copyright 2012 The Obvious Corporation +Copyright 2012 The Obvious Corporation. http://obvious.com + Copyright 2012 The Obvious Corporation. http://obvious.com/ @@ -451,16 +451,16 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@xtuc/long 4.2.2 - Apache-2.0 -https://github.com/dcodeIO/long.js#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@xtuc/long 4.2.2 - Apache-2.0 +https://github.com/dcodeIO/long.js#readme + + Apache License Version 2.0, January 2004 @@ -663,16 +663,16 @@ https://github.com/dcodeIO/long.js#readme WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ansi-html-community 0.0.8 - Apache-2.0 -https://github.com/mahdyar/ansi-html-community - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ansi-html-community 0.0.8 - Apache-2.0 +https://github.com/mahdyar/ansi-html-community + + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -875,21 +875,21 @@ Apache License See the License for the specific language governing permissions and limitations under the License. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo%2Fcompute/metadata v0.2.3 - Apache-2.0 - - -Copyright 2014 Google LLC -Copyright 2016 Google LLC -Copyright 2018 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo%2Fcompute/metadata v0.2.3 - Apache-2.0 + + +Copyright 2014 Google LLC +Copyright 2016 Google LLC +Copyright 2018 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC + Apache License Version 2.0, January 2004 @@ -986,19 +986,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo%2Fdataproc/v2 v2.3.0 - Apache-2.0 - - -Copyright 2019 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo%2Fdataproc/v2 v2.3.0 - Apache-2.0 + + +Copyright 2019 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -1095,18 +1095,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo%2Frecaptchaenterprise/v2 v2.9.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo%2Frecaptchaenterprise/v2 v2.9.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -1203,20 +1203,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo%2Fvision/v2 v2.7.5 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2017 Google Inc. -Copyright 2019 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo%2Fvision/v2 v2.7.5 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2017 Google Inc. +Copyright 2019 Google LLC. + Apache License Version 2.0, January 2004 @@ -1313,18 +1313,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/accessapproval v1.7.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/accessapproval v1.7.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -1421,18 +1421,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/accesscontextmanager v1.8.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/accesscontextmanager v1.8.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -1529,18 +1529,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/aiplatform v1.58.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/aiplatform v1.58.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -1637,18 +1637,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/analytics v0.22.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/analytics v0.22.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -1745,20 +1745,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/apigateway v1.6.4 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/apigateway v1.6.4 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -1855,19 +1855,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/apigeeconnect v1.6.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/apigeeconnect v1.6.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -1964,18 +1964,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/apigeeregistry v0.8.2 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/apigeeregistry v0.8.2 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -2072,19 +2072,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/appengine v1.8.4 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/appengine v1.8.4 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -2181,19 +2181,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/area120 v0.8.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/area120 v0.8.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -2290,19 +2290,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/artifactregistry v1.14.6 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/artifactregistry v1.14.6 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -2399,18 +2399,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/asset v1.17.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/asset v1.17.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -2507,18 +2507,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/assuredworkloads v1.11.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/assuredworkloads v1.11.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -2615,20 +2615,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/automl v1.13.4 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/automl v1.13.4 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -2725,18 +2725,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/baremetalsolution v1.2.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/baremetalsolution v1.2.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -2833,18 +2833,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/batch v1.7.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/batch v1.7.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -2941,18 +2941,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/beyondcorp v1.0.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/beyondcorp v1.0.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -3049,26 +3049,26 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/bigquery v1.58.0 - Apache-2.0 - - -Copyright 2015 Google LLC -Copyright 2016 Google LLC -Copyright 2017 Google LLC -Copyright 2018 Google LLC -Copyright 2019 Google LLC -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2024 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/bigquery v1.58.0 - Apache-2.0 + + +Copyright 2015 Google LLC +Copyright 2016 Google LLC +Copyright 2017 Google LLC +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2024 Google LLC + Apache License Version 2.0, January 2004 @@ -3165,18 +3165,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/billing v1.18.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/billing v1.18.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -3273,19 +3273,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/binaryauthorization v1.8.0 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/binaryauthorization v1.8.0 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -3382,18 +3382,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/certificatemanager v1.7.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/certificatemanager v1.7.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -3490,18 +3490,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/channel v1.17.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/channel v1.17.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -3598,19 +3598,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/cloudbuild v1.15.0 - Apache-2.0 - - -Copyright 2019 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/cloudbuild v1.15.0 - Apache-2.0 + + +Copyright 2019 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -3707,18 +3707,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/clouddms v1.7.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/clouddms v1.7.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -3815,18 +3815,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/cloudtasks v1.12.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/cloudtasks v1.12.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -3923,18 +3923,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/compute v1.23.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/compute v1.23.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -4031,18 +4031,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/contactcenterinsights v1.12.1 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/contactcenterinsights v1.12.1 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -4139,20 +4139,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/container v1.29.0 - Apache-2.0 - - -Copyright 2014 Google LLC -Copyright 2018 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/container v1.29.0 - Apache-2.0 + + +Copyright 2014 Google LLC +Copyright 2018 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -4249,20 +4249,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/containeranalysis v0.11.3 - Apache-2.0 - - -Copyright 2019 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2018 The Grafeas Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/containeranalysis v0.11.3 - Apache-2.0 + + +Copyright 2019 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2018 The Grafeas Authors + Apache License Version 2.0, January 2004 @@ -4359,20 +4359,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/datacatalog v1.19.2 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2024 Google LLC -copyright message ( 61f23b2 (https://github.com/googleapis/google-cloud-go/commit/61f23b2167dbe9e3e031db12ccf46b7eac639fa3)) - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/datacatalog v1.19.2 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2024 Google LLC +copyright message ( 61f23b2 (https://github.com/googleapis/google-cloud-go/commit/61f23b2167dbe9e3e031db12ccf46b7eac639fa3)) + Apache License Version 2.0, January 2004 @@ -4469,18 +4469,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/dataflow v0.9.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/dataflow v0.9.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -4577,18 +4577,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/dataform v0.9.1 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/dataform v0.9.1 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -4685,19 +4685,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/datafusion v1.7.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/datafusion v1.7.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -4794,19 +4794,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/datalabeling v0.8.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2019 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/datalabeling v0.8.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2019 Google LLC. + Apache License Version 2.0, January 2004 @@ -4903,18 +4903,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/dataplex v1.14.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/dataplex v1.14.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -5011,19 +5011,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/dataqna v0.8.4 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/dataqna v0.8.4 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -5120,23 +5120,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/datastore v1.15.0 - Apache-2.0 - - -Copyright 2014 Google LLC -Copyright 2016 Google LLC -Copyright 2017 Google LLC -Copyright 2018 Google LLC -Copyright 2019 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/datastore v1.15.0 - Apache-2.0 + + +Copyright 2014 Google LLC +Copyright 2016 Google LLC +Copyright 2017 Google LLC +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -5233,19 +5233,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/datastream v1.10.3 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/datastream v1.10.3 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -5342,19 +5342,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/deploy v1.17.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2024 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/deploy v1.17.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2024 Google LLC + Apache License Version 2.0, January 2004 @@ -5451,20 +5451,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/dialogflow v1.48.1 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2024 Google LLC -copyright ( 96c9d7e (https://github.com/googleapis/google-cloud-go/commit/96c9d7ee74af075fdd17b02233ac92fba6d89988)) - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/dialogflow v1.48.1 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2024 Google LLC +copyright ( 96c9d7e (https://github.com/googleapis/google-cloud-go/commit/96c9d7ee74af075fdd17b02233ac92fba6d89988)) + Apache License Version 2.0, January 2004 @@ -5561,18 +5561,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/dlp v1.11.1 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/dlp v1.11.1 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -5669,18 +5669,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/documentai v1.23.7 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/documentai v1.23.7 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -5777,19 +5777,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/domains v0.9.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/domains v0.9.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -5886,18 +5886,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/edgecontainer v1.1.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/edgecontainer v1.1.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -5994,23 +5994,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/errorreporting v0.3.0 - Apache-2.0 - - -Copyright 2016 Google LLC -Copyright 2017 Google LLC -Copyright 2018 Google LLC -Copyright 2019 Google LLC -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/errorreporting v0.3.0 - Apache-2.0 + + +Copyright 2016 Google LLC +Copyright 2017 Google LLC +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC + Apache License Version 2.0, January 2004 @@ -6107,18 +6107,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/essentialcontacts v1.6.5 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/essentialcontacts v1.6.5 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -6215,18 +6215,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/eventarc v1.13.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/eventarc v1.13.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -6323,18 +6323,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/filestore v1.8.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/filestore v1.8.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -6431,23 +6431,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/firestore v1.14.0 - Apache-2.0 - - -Copyright 2017 Google LLC -Copyright 2018 Google LLC -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2019 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/firestore v1.14.0 - Apache-2.0 + + +Copyright 2017 Google LLC +Copyright 2018 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2019 Google LLC. + Apache License Version 2.0, January 2004 @@ -6544,19 +6544,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/functions v1.15.4 - Apache-2.0 - - -Copyright 2018 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/functions v1.15.4 - Apache-2.0 + + +Copyright 2018 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -6653,18 +6653,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/gkebackup v1.3.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/gkebackup v1.3.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -6761,19 +6761,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/gkeconnect v0.8.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/gkeconnect v0.8.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -6870,18 +6870,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/gkehub v0.14.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/gkehub v0.14.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -6978,18 +6978,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/gkemulticloud v1.1.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/gkemulticloud v1.1.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -7086,19 +7086,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/gsuiteaddons v1.6.4 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/gsuiteaddons v1.6.4 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -7195,22 +7195,22 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/iam v1.1.5 - Apache-2.0 - - -Copyright 2016 Google LLC -Copyright 2018 Google LLC -Copyright 2019 Google LLC -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/iam v1.1.5 - Apache-2.0 + + +Copyright 2016 Google LLC +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -7307,18 +7307,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/iap v1.9.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/iap v1.9.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -7415,19 +7415,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/ids v1.4.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/ids v1.4.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -7524,19 +7524,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/iot v1.7.4 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/iot v1.7.4 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -7633,20 +7633,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/kms v1.15.5 - Apache-2.0 - - -Copyright 2018 Google LLC -Copyright 2019 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/kms v1.15.5 - Apache-2.0 + + +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -7743,18 +7743,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/language v1.12.2 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/language v1.12.2 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -7851,18 +7851,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/lifesciences v0.9.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/lifesciences v0.9.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -7959,23 +7959,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/logging v1.9.0 - Apache-2.0 - - -Copyright 2016 Google LLC -Copyright 2017 Google LLC -Copyright 2018 Google LLC -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/logging v1.9.0 - Apache-2.0 + + +Copyright 2016 Google LLC +Copyright 2017 Google LLC +Copyright 2018 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -8072,21 +8072,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/longrunning v0.5.4 - Apache-2.0 - - -Copyright 2016 Google LLC -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2020, Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/longrunning v0.5.4 - Apache-2.0 + + +Copyright 2016 Google LLC +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2020, Google LLC + Apache License Version 2.0, January 2004 @@ -8183,19 +8183,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/managedidentities v1.6.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2019 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/managedidentities v1.6.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2019 Google LLC. + Apache License Version 2.0, January 2004 @@ -8292,19 +8292,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/maps v1.6.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2024 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/maps v1.6.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2024 Google LLC + Apache License Version 2.0, January 2004 @@ -8401,19 +8401,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/mediatranslation v0.8.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/mediatranslation v0.8.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -8510,18 +8510,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/memcache v1.10.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/memcache v1.10.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -8618,18 +8618,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/metastore v1.13.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/metastore v1.13.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -8726,21 +8726,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/monitoring v1.17.0 - Apache-2.0 - - -Copyright 2018 Google LLC -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/monitoring v1.17.0 - Apache-2.0 + + +Copyright 2018 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -8837,19 +8837,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/networkconnectivity v1.14.3 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/networkconnectivity v1.14.3 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -8946,18 +8946,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/networkmanagement v1.9.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/networkmanagement v1.9.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -9054,19 +9054,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/networksecurity v0.9.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/networksecurity v0.9.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -9163,18 +9163,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/notebooks v1.11.2 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/notebooks v1.11.2 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -9271,18 +9271,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/optimization v1.6.2 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/optimization v1.6.2 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -9379,18 +9379,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/orchestration v1.8.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/orchestration v1.8.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -9487,19 +9487,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/orgpolicy v1.12.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2019 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/orgpolicy v1.12.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2019 Google LLC. + Apache License Version 2.0, January 2004 @@ -9596,20 +9596,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/osconfig v1.12.4 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/osconfig v1.12.4 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -9706,19 +9706,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/oslogin v1.13.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2024 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/oslogin v1.13.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2024 Google LLC + Apache License Version 2.0, January 2004 @@ -9815,19 +9815,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/phishingprotection v0.8.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2019 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/phishingprotection v0.8.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2019 Google LLC. + Apache License Version 2.0, January 2004 @@ -9924,18 +9924,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/policytroubleshooter v1.10.2 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/policytroubleshooter v1.10.2 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -10032,19 +10032,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/privatecatalog v0.9.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/privatecatalog v0.9.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -10141,26 +10141,26 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/pubsub v1.34.0 - Apache-2.0 - - -Copyright 2014 Google LLC -Copyright 2016 Google LLC -Copyright 2017 Google LLC -Copyright 2018 Google LLC -Copyright 2019 Google LLC -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2024 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/pubsub v1.34.0 - Apache-2.0 + + +Copyright 2014 Google LLC +Copyright 2016 Google LLC +Copyright 2017 Google LLC +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2024 Google LLC + Apache License Version 2.0, January 2004 @@ -10257,20 +10257,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/pubsublite v1.8.1 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/pubsublite v1.8.1 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -10367,19 +10367,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/recommendationengine v0.8.4 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/recommendationengine v0.8.4 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -10476,18 +10476,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/recommender v1.12.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/recommender v1.12.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -10584,18 +10584,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/redis v1.14.1 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/redis v1.14.1 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -10692,19 +10692,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/resourcemanager v1.9.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2019 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/resourcemanager v1.9.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2019 Google LLC. + Apache License Version 2.0, January 2004 @@ -10801,19 +10801,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/resourcesettings v1.6.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/resourcesettings v1.6.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -10910,19 +10910,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/retail v1.14.4 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/retail v1.14.4 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -11019,18 +11019,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/run v1.3.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/run v1.3.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -11127,18 +11127,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/scheduler v1.10.5 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/scheduler v1.10.5 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -11235,20 +11235,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/secretmanager v1.11.4 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/secretmanager v1.11.4 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -11345,18 +11345,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/security v1.15.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/security v1.15.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -11453,20 +11453,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/securitycenter v1.24.3 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/securitycenter v1.24.3 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -11563,18 +11563,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/servicedirectory v1.11.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/servicedirectory v1.11.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -11671,18 +11671,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/shell v1.7.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/shell v1.7.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -11779,18 +11779,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/speech v1.21.0 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/speech v1.21.0 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -11887,25 +11887,25 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/storage v1.35.1 - Apache-2.0 - - -Copyright 2014 Google LLC -Copyright 2016 Google LLC -Copyright 2017 Google LLC -Copyright 2018 Google LLC -Copyright 2019 Google LLC -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/storage v1.35.1 - Apache-2.0 + + +Copyright 2014 Google LLC +Copyright 2016 Google LLC +Copyright 2017 Google LLC +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -12002,18 +12002,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/storagetransfer v1.10.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/storagetransfer v1.10.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -12110,18 +12110,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/talent v1.6.5 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/talent v1.6.5 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -12218,18 +12218,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/texttospeech v1.7.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/texttospeech v1.7.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -12326,18 +12326,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/tpu v1.6.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/tpu v1.6.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -12434,20 +12434,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/trace v1.10.4 - Apache-2.0 - - -Copyright 2018 Google LLC -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/trace v1.10.4 - Apache-2.0 + + +Copyright 2018 Google LLC +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -12544,19 +12544,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/translate v1.10.0 - Apache-2.0 - - -Copyright 2016 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/translate v1.10.0 - Apache-2.0 + + +Copyright 2016 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -12653,18 +12653,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/video v1.20.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/video v1.20.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -12761,20 +12761,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/videointelligence v1.11.4 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2019 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/videointelligence v1.11.4 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2019 Google LLC. + Apache License Version 2.0, January 2004 @@ -12871,18 +12871,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/vmmigration v1.7.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/vmmigration v1.7.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -12979,18 +12979,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/vmwareengine v1.0.3 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/vmwareengine v1.0.3 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -13087,18 +13087,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/vpcaccess v1.7.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/vpcaccess v1.7.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -13195,19 +13195,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/webrisk v1.9.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2019 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/webrisk v1.9.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2019 Google LLC. + Apache License Version 2.0, January 2004 @@ -13304,18 +13304,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2Fgo/websecurityscanner v1.6.4 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2Fgo/websecurityscanner v1.6.4 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -13412,19 +13412,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com%2fgo/workflows v1.12.3 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com%2fgo/workflows v1.12.3 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -13521,29 +13521,29 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cloud.google.com/go v0.112.0 - Apache-2.0 - - -Copyright 2014 Google LLC -Copyright 2016 Google LLC -Copyright 2017 Google LLC -Copyright 2018 Google LLC -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2018 Google Inc. -Copyright 2019 Google LLC. -Copyright 2023 Google LLC. -Copyright 2017 The Go Authors -Copyright 2020 The Go Authors -Copyright (c) 2020 The Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cloud.google.com/go v0.112.0 - Apache-2.0 + + +Copyright 2014 Google LLC +Copyright 2016 Google LLC +Copyright 2017 Google LLC +Copyright 2018 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2018 Google Inc. +Copyright 2019 Google LLC. +Copyright 2023 Google LLC. +Copyright 2017 The Go Authors +Copyright 2020 The Go Authors +Copyright (c) 2020 The Go Authors + Apache License Version 2.0, January 2004 @@ -13640,18 +13640,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -code.cloudfoundry.org/clock v1.0.0 - Apache-2.0 - - -Copyright (c) 2015 Pivotal Software, Inc. -Copyright (c) 2015-Present CloudFoundry.org Foundation, Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +code.cloudfoundry.org/clock v1.0.0 - Apache-2.0 + + +Copyright (c) 2015 Pivotal Software, Inc. +Copyright (c) 2015-Present CloudFoundry.org Foundation, Inc. + Apache License Version 2.0, January 2004 @@ -13748,17 +13748,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -faye-websocket 0.11.4 - Apache-2.0 -https://github.com/faye/faye-websocket-node - -Copyright 2010-2021 James Coglan - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +faye-websocket 0.11.4 - Apache-2.0 +https://github.com/faye/faye-websocket-node + +Copyright 2010-2021 James Coglan + Copyright 2010-2021 James Coglan Licensed under the Apache License, Version 2.0 (the "License"); you may not use @@ -13771,17 +13771,123 @@ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fadalogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 - Apache-2.0 + + +Copyright 2023 The go-fuzz-headers + +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + + + "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + + + + "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + + + "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + + + + "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + + + + "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. ---------------------------------------------------------- + ---------------------------------------------------------- + "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. -github.com%2Fadalogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 - Apache-2.0 + + "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). -Copyright 2023 The go-fuzz-headers + + "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + + + + "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + + + + "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + + You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); + +you may not use this file except in compliance with the License. + +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software + +distributed under the License is distributed on an "AS IS" BASIS, + +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + +See the License for the specific language governing permissions and + +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fadamkorcz/go-118-fuzz-build v0.0.0-20230306123547-8075edf89bb0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -13878,16 +13984,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fadamkorcz/go-118-fuzz-build v0.0.0-20230306123547-8075edf89bb0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2%2Ffeature%2Fec2/imds v1.14.10 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -13984,16 +14090,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2%2Ffeature%2Fec2/imds v1.14.10 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2%2Finternal%2Fendpoints/v2 v2.5.9 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -14090,16 +14196,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2%2Finternal%2Fendpoints/v2 v2.5.9 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2%2Finternal/configsources v1.2.9 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -14196,16 +14302,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2%2Finternal/configsources v1.2.9 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2%2Finternal/ini v1.7.2 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -14302,16 +14408,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2%2Finternal/ini v1.7.2 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Finternal/accept-encoding v1.10.4 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -14408,16 +14514,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Finternal/accept-encoding v1.10.4 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Finternal/presigned-url v1.10.9 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -14514,16 +14620,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Finternal/presigned-url v1.10.9 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2%2Fservice/ec2 v1.141.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -14620,16 +14726,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2%2Fservice/ec2 v1.141.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2%2Fservice/sso v1.18.5 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -14726,16 +14832,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2%2Fservice/sso v1.18.5 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2%2Fservice/ssooidc v1.21.5 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -14832,16 +14938,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2%2Fservice/ssooidc v1.21.5 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2%2Fservice/sts v1.26.5 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -14938,16 +15044,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2%2Fservice/sts v1.26.5 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2/config v1.26.1 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -15044,16 +15150,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2/config v1.26.1 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws%2Faws-sdk-go-v2/credentials v1.16.12 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -15150,16 +15256,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws%2Faws-sdk-go-v2/credentials v1.16.12 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Faws/aws-sdk-go-v2 v1.24.0 - Apache-2.0 + + +Copyright 2013 The Go Authors +Copyright 2014-2015 Stripe, Inc. +Copyright (c) 2009 The Go Authors +Copyright 2015 Amazon.com, Inc. or its affiliates + Apache License Version 2.0, January 2004 @@ -15256,20 +15366,22 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Faws/aws-sdk-go-v2 v1.24.0 - Apache-2.0 - - -Copyright 2013 The Go Authors -Copyright 2014-2015 Stripe, Inc. -Copyright (c) 2009 The Go Authors -Copyright 2015 Amazon.com, Inc. or its affiliates - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2faws/smithy-go v1.19.0 - Apache-2.0 + + +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +Copyright 2013 The Go Authors +Copyright 2016 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright Amazon.com, Inc. or its affiliates + Apache License Version 2.0, January 2004 @@ -15366,22 +15478,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2faws/smithy-go v1.19.0 - Apache-2.0 - - -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -Copyright 2013 The Go Authors -Copyright 2016 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright Amazon.com, Inc. or its affiliates - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fgo-autorest%2Fautorest%2Fazure/auth v0.5.12 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -15478,16 +15584,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fgo-autorest%2Fautorest%2Fazure/auth v0.5.12 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fgo-autorest%2Fautorest%2Fazure/cli v0.4.5 - Apache-2.0 + + +Copyright 2015 Microsoft Corporation +Copyright 2017 Microsoft Corporation + Apache License Version 2.0, January 2004 @@ -15584,18 +15692,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fgo-autorest%2Fautorest%2Fazure/cli v0.4.5 - Apache-2.0 - - -Copyright 2015 Microsoft Corporation -Copyright 2017 Microsoft Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fgo-autorest%2Fautorest/adal v0.9.23 - Apache-2.0 + + +Copyright 2015 Microsoft Corporation +Copyright 2017 Microsoft Corporation + Apache License Version 2.0, January 2004 @@ -15692,18 +15800,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fgo-autorest%2Fautorest/adal v0.9.23 - Apache-2.0 - - -Copyright 2015 Microsoft Corporation -Copyright 2017 Microsoft Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fgo-autorest%2Fautorest/date v0.3.0 - Apache-2.0 + + +Copyright 2015 Microsoft Corporation +Copyright 2017 Microsoft Corporation + Apache License Version 2.0, January 2004 @@ -15800,18 +15908,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fgo-autorest%2Fautorest/date v0.3.0 - Apache-2.0 - - -Copyright 2015 Microsoft Corporation -Copyright 2017 Microsoft Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fgo-autorest%2Fautorest/mocks v0.4.2 - Apache-2.0 + + +Copyright 2015 Microsoft Corporation +Copyright 2017 Microsoft Corporation + Apache License Version 2.0, January 2004 @@ -15908,18 +16016,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fgo-autorest%2Fautorest/mocks v0.4.2 - Apache-2.0 - - -Copyright 2015 Microsoft Corporation -Copyright 2017 Microsoft Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fgo-autorest%2Fautorest/to v0.4.0 - Apache-2.0 + + +Copyright 2015 Microsoft Corporation +Copyright 2017 Microsoft Corporation + Apache License Version 2.0, January 2004 @@ -16016,18 +16124,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fgo-autorest%2Fautorest/to v0.4.0 - Apache-2.0 - - -Copyright 2015 Microsoft Corporation -Copyright 2017 Microsoft Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fgo-autorest%2Fautorest/validation v0.3.1 - Apache-2.0 + + +Copyright 2015 Microsoft Corporation +Copyright 2017 Microsoft Corporation + Apache License Version 2.0, January 2004 @@ -16124,18 +16232,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fgo-autorest%2Fautorest/validation v0.3.1 - Apache-2.0 - - -Copyright 2015 Microsoft Corporation -Copyright 2017 Microsoft Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fgo-autorest/autorest v0.11.29 - Apache-2.0 + + +Copyright 2015 Microsoft Corporation +Copyright 2017 Microsoft Corporation + Apache License Version 2.0, January 2004 @@ -16232,18 +16340,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fgo-autorest/autorest v0.11.29 - Apache-2.0 - - -Copyright 2015 Microsoft Corporation -Copyright 2017 Microsoft Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fgo-autorest/logger v0.2.1 - Apache-2.0 + + +Copyright 2015 Microsoft Corporation +Copyright 2017 Microsoft Corporation + Apache License Version 2.0, January 2004 @@ -16340,18 +16448,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fgo-autorest/logger v0.2.1 - Apache-2.0 - - -Copyright 2015 Microsoft Corporation -Copyright 2017 Microsoft Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fgo-autorest/tracing v0.6.0 - Apache-2.0 + + +Copyright 2015 Microsoft Corporation +Copyright 2017 Microsoft Corporation +Copyright 2018 Microsoft Corporation + Apache License Version 2.0, January 2004 @@ -16448,19 +16557,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fgo-autorest/tracing v0.6.0 - Apache-2.0 - - -Copyright 2015 Microsoft Corporation -Copyright 2017 Microsoft Corporation -Copyright 2018 Microsoft Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure/go-autorest v14.2.0+incompatible - Apache-2.0 + + +Copyright 2015 Microsoft Corporation +Copyright 2017 Microsoft Corporation + Apache License Version 2.0, January 2004 @@ -16557,18 +16665,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure/go-autorest v14.2.0+incompatible - Apache-2.0 - - -Copyright 2015 Microsoft Corporation -Copyright 2017 Microsoft Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcensus-instrumentation/opencensus-proto v0.4.1 - Apache-2.0 + + +Copyright 2017, OpenCensus +Copyright 2018, OpenCensus +Copyright 2019, OpenCensus +Copyright 2016-17, OpenCensus +Copyright 2016-18, OpenCensus + Apache License Version 2.0, January 2004 @@ -16665,21 +16776,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcensus-instrumentation/opencensus-proto v0.4.1 - Apache-2.0 - - -Copyright 2017, OpenCensus -Copyright 2018, OpenCensus -Copyright 2019, OpenCensus -Copyright 2016-17, OpenCensus -Copyright 2016-18, OpenCensus - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcilium/coverbee v0.3.2 - Apache-2.0 + + +Copyright 2013 The Go Authors + Apache License Version 2.0, January 2004 @@ -16776,17 +16883,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcilium/coverbee v0.3.2 - Apache-2.0 - - -Copyright 2013 The Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fcilium/fake v0.5.0 - Apache-2.0 + + +Copyright Authors of Cilium + Apache License Version 2.0, January 2004 @@ -16883,17 +16990,22 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fcilium/fake v0.5.0 - Apache-2.0 - - -Copyright Authors of Cilium - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcilium/proxy v0.0.0-20231031145409-f19708f3d018 - Apache-2.0 + + +Copyright 2018 +Copyright 2020 +Copyright 2017-2021 +Copyright Authors of Cilium +Copyright 2019 The Bazel Authors +Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com + Apache License Version 2.0, January 2004 @@ -16990,22 +17102,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcilium/proxy v0.0.0-20231031145409-f19708f3d018 - Apache-2.0 - - -Copyright 2018 -Copyright 2020 -Copyright 2017-2021 -Copyright Authors of Cilium -Copyright 2019 The Bazel Authors -Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcilium/workerpool v1.2.0 - Apache-2.0 + + +Copyright Authors of Cilium + Apache License Version 2.0, January 2004 @@ -17102,17 +17209,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcilium/workerpool v1.2.0 - Apache-2.0 - - -Copyright Authors of Cilium - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcncf%2Fudpa/go v0.0.0-20220112060539-c52dc94e7fbe - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -17209,16 +17315,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcncf%2Fudpa/go v0.0.0-20220112060539-c52dc94e7fbe - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcncf%2Fxds/go v0.0.0-20231128003011-0fa0005c9caa - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -17315,16 +17421,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcncf%2Fxds/go v0.0.0-20231128003011-0fa0005c9caa - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd%2Fbtrfs/v2 v2.0.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -17421,16 +17527,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd%2Fbtrfs/v2 v2.0.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd%2Fcgroups/v3 v3.0.2 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -17527,16 +17633,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd%2Fcgroups/v3 v3.0.2 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd%2Fstargz-snapshotter/estargz v0.14.3 - Apache-2.0 + + +Copyright 2019 The Go Authors + Apache License Version 2.0, January 2004 @@ -17633,17 +17740,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd%2Fstargz-snapshotter/estargz v0.14.3 - Apache-2.0 - - -Copyright 2019 The Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd%2Ftypeurl/v2 v2.1.1 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -17740,16 +17846,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd%2Ftypeurl/v2 v2.1.1 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/aufs v1.0.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -17846,16 +17952,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/aufs v1.0.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/cgroups v1.1.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -17952,16 +18058,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/cgroups v1.1.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/console v1.0.3 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -18058,16 +18164,29 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/console v1.0.3 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fcontainerd/containerd v1.7.13 - Apache-2.0 + + +Copyright 2018 CNI authors +Copyright 2021 ADA Logics Ltd +Copyright 2022 ADA Logics Ltd +Copyright 2012-2015 Docker, Inc. +Copyright 2012-2017 Docker, Inc. +Copyright (c) 2009 The Go Authors +Copyright (c) Docker/Moby authors +Copyright (c) 2013, The GoGo Authors +Copyright 2015 The Kubernetes Authors +Copyright 2016 The Kubernetes Authors +Copyright 2017 The Kubernetes Authors +Copyright 2018 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -18164,29 +18283,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fcontainerd/containerd v1.7.13 - Apache-2.0 - - -Copyright 2018 CNI authors -Copyright 2021 ADA Logics Ltd -Copyright 2022 ADA Logics Ltd -Copyright 2012-2015 Docker, Inc. -Copyright 2012-2017 Docker, Inc. -Copyright (c) 2009 The Go Authors -Copyright (c) Docker/Moby authors -Copyright (c) 2013, The GoGo Authors -Copyright 2015 The Kubernetes Authors -Copyright 2016 The Kubernetes Authors -Copyright 2017 The Kubernetes Authors -Copyright 2018 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/continuity v0.4.2 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -18283,16 +18389,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/continuity v0.4.2 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/errdefs v0.1.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -18389,16 +18495,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/errdefs v0.1.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/fifo v1.1.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -18495,16 +18601,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/fifo v1.1.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/go-cni v1.1.9 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -18601,16 +18707,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/go-cni v1.1.9 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/go-runc v1.0.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -18707,16 +18813,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/go-runc v1.0.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fcontainerd/imgcrypt v1.1.7 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -18813,16 +18919,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fcontainerd/imgcrypt v1.1.7 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/log v0.1.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -18919,16 +19025,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/log v0.1.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/protobuild v0.3.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -19025,16 +19131,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/protobuild v0.3.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainerd/typeurl v1.0.2 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -19131,16 +19237,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainerd/typeurl v1.0.2 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fcontainerd/zfs v1.1.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -19237,16 +19343,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fcontainerd/zfs v1.1.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainernetworking/cni v1.1.2 - Apache-2.0 + + +Copyright 2015 CNI authors +Copyright 2016 CNI authors +Copyright 2017 CNI authors +Copyright 2018 CNI authors +Copyright 2019 CNI authors +Copyright 2014-2016 CNI authors +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -19343,23 +19456,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainernetworking/cni v1.1.2 - Apache-2.0 - - -Copyright 2015 CNI authors -Copyright 2016 CNI authors -Copyright 2017 CNI authors -Copyright 2018 CNI authors -Copyright 2019 CNI authors -Copyright 2014-2016 CNI authors -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainers/libtrust v0.0.0-20230121012942-c1716e8a8d01 - Apache-2.0 + + +Copyright 2014 Docker, Inc. +copyright 2014 Docker, inc. + Apache License Version 2.0, January 2004 @@ -19456,18 +19564,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainers/libtrust v0.0.0-20230121012942-c1716e8a8d01 - Apache-2.0 - - -Copyright 2014 Docker, Inc. -copyright 2014 Docker, inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainers/ocicrypt v1.1.9 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -19564,16 +19670,27 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainers/ocicrypt v1.1.9 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcontainers/storage v1.51.0 - Apache-2.0 + + +(c) WithFileRange, (c) +Copyright (c) 2019 SUSE LLC +Copyright 2012-2016 Docker, Inc. +Copyright 2012-2017 Docker, Inc. +Copyright 2013-2016 Docker, Inc. +Copyright 2013-2018 Docker, Inc. +Copyright 2011 The Perkeep Authors +Copyright 2014-2016 The Docker & Go Authors +Copyright (c) 2014-2016 The Docker & Go Authors +Copyright (c) 2019 Aleksa Sarai +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -19670,27 +19787,28 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcontainers/storage v1.51.0 - Apache-2.0 - - -(c) WithFileRange, (c) -Copyright (c) 2019 SUSE LLC -Copyright 2012-2016 Docker, Inc. -Copyright 2012-2017 Docker, Inc. -Copyright 2013-2016 Docker, Inc. -Copyright 2013-2018 Docker, Inc. -Copyright 2011 The Perkeep Authors -Copyright 2014-2016 The Docker & Go Authors -Copyright (c) 2014-2016 The Docker & Go Authors -Copyright (c) 2019 Aleksa Sarai -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcoreos%2Fgo-systemd/v22 v22.5.0 - Apache-2.0 + + +Copyright 2015 CoreOS Inc. +Copyright 2014 Docker, Inc. +Copyright 2015 CoreOS, Inc. +Copyright 2015 RedHat, Inc. +Copyright 2016 CoreOS, Inc. +Copyright 2018 CoreOS, Inc. +Copyright 2019 CoreOS, Inc. +Copyright 2020 CoreOS, Inc. +Copyright 2022 CoreOS, Inc. +Copyright 2015-2018 CoreOS, Inc. +Copyright 2015, 2018 CoreOS, Inc. +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -19787,28 +19905,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcoreos%2Fgo-systemd/v22 v22.5.0 - Apache-2.0 - - -Copyright 2015 CoreOS Inc. -Copyright 2014 Docker, Inc. -Copyright 2015 CoreOS, Inc. -Copyright 2015 RedHat, Inc. -Copyright 2016 CoreOS, Inc. -Copyright 2018 CoreOS, Inc. -Copyright 2019 CoreOS, Inc. -Copyright 2020 CoreOS, Inc. -Copyright 2022 CoreOS, Inc. -Copyright 2015-2018 CoreOS, Inc. -Copyright 2015, 2018 CoreOS, Inc. -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcoreos/go-oidc v2.2.1+incompatible - Apache-2.0 + + +Copyright 2014 CoreOS, Inc +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -19905,18 +20013,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcoreos/go-oidc v2.2.1+incompatible - Apache-2.0 - - -Copyright 2014 CoreOS, Inc -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcoreos/go-semver v0.3.1 - Apache-2.0 + + +Copyright 2018 CoreOS, Inc +Copyright 2013-2015 CoreOS, Inc. +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -20013,19 +20122,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcoreos/go-semver v0.3.1 - Apache-2.0 - - -Copyright 2018 CoreOS, Inc -Copyright 2013-2015 CoreOS, Inc. -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdimchansky/utfbom v1.1.1 - Apache-2.0 + + +Copyright (c) 2018-2020, Dmitrij Koniajev (dimchansky@gmail.com) + Apache License Version 2.0, January 2004 @@ -20122,17 +20229,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdimchansky/utfbom v1.1.1 - Apache-2.0 - - -Copyright (c) 2018-2020, Dmitrij Koniajev (dimchansky@gmail.com) - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdistribution%2Fdistribution/v3 v3.0.0-20221208165359-362910506bc2 - Apache-2.0 + + +Copyright (c) 2013 Damien Le Berrigaud and Nick Wade +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -20229,18 +20337,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdistribution%2Fdistribution/v3 v3.0.0-20221208165359-362910506bc2 - Apache-2.0 - - -Copyright (c) 2013 Damien Le Berrigaud and Nick Wade -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdistribution/reference v0.5.0 - Apache-2.0 + + +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -20337,17 +20444,24 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdistribution/reference v0.5.0 - Apache-2.0 - - -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdocker/cli v25.0.3+incompatible - Apache-2.0 + + +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +(c) ProgressPrinter ReadCloser +Copyright (c) 2013, Felix Riedel +Copyright 2012-2017 Docker, Inc. +Copyright 2013-2017 Docker, Inc. +Copyright (c) 2015-$ date + Y Docker +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -20444,24 +20558,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdocker/cli v25.0.3+incompatible - Apache-2.0 - - -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -(c) ProgressPrinter ReadCloser -Copyright (c) 2013, Felix Riedel -Copyright 2012-2017 Docker, Inc. -Copyright 2013-2017 Docker, Inc. -Copyright (c) 2015-$ date + Y Docker -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdocker/distribution v2.8.3+incompatible - Apache-2.0 + + +Copyright (c) 2013 Damien Le Berrigaud and Nick Wade + Apache License Version 2.0, January 2004 @@ -20558,17 +20665,28 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdocker/distribution v2.8.3+incompatible - Apache-2.0 - - -Copyright (c) 2013 Damien Le Berrigaud and Nick Wade - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fdocker/docker v25.0.5+incompatible - Apache-2.0 + + +(c) WithFileRange, (c) +copyright 2015 Docker, inc. +ExistingContainerIDs (c) Test +Copyright (c) 2015 John Howard +Copyright 2012-2017 Docker, Inc. +Copyright 2013-2018 Docker, Inc. +Copyright (c) 2009 The Go Authors +Copyright (c) 2015-$ date + Y Docker +Copyright 1999-2013 Gentoo Foundation +Copyright (c) 2015-'+$currentYear+ Docker +Copyright (c) 2012-2018 Mat Ryer and Tyler Bunnell +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -20665,28 +20783,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fdocker/docker v25.0.5+incompatible - Apache-2.0 - - -(c) WithFileRange, (c) -copyright 2015 Docker, inc. -ExistingContainerIDs (c) Test -Copyright (c) 2015 John Howard -Copyright 2012-2017 Docker, Inc. -Copyright 2013-2018 Docker, Inc. -Copyright (c) 2009 The Go Authors -Copyright (c) 2015-$ date + Y Docker -Copyright 1999-2013 Gentoo Foundation -Copyright (c) 2015-'+$currentYear+ Docker -Copyright (c) 2012-2018 Mat Ryer and Tyler Bunnell -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fdocker/go-connections v0.5.0 - Apache-2.0 + + +Copyright 2015 Docker, Inc. +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -20783,18 +20891,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fdocker/go-connections v0.5.0 - Apache-2.0 - - -Copyright 2015 Docker, Inc. -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdocker/go-events v0.0.0-20190806004212-e31b211e4f1c - Apache-2.0 + + +Copyright 2016 Docker, Inc. +Copyright (c) 2016 Docker, Inc. +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -20891,19 +21000,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdocker/go-events v0.0.0-20190806004212-e31b211e4f1c - Apache-2.0 - - -Copyright 2016 Docker, Inc. -Copyright (c) 2016 Docker, Inc. -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdocker/go-units v0.5.0 - Apache-2.0 + + +Copyright 2015 Docker, Inc. +Copyright (c) 2015 Docker, Inc. +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -21000,19 +21109,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdocker/go-units v0.5.0 - Apache-2.0 - - -Copyright 2015 Docker, Inc. -Copyright (c) 2015 Docker, Inc. -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdocker/libnetwork v0.8.0-dev.2.0.20210525090646-64b7a4574d14 - Apache-2.0 + + +copyright 2015 Docker, inc. +Copyright 2014-2016 The Docker & Go Authors +Copyright (c) 2014-2016 The Docker & Go Authors + Apache License Version 2.0, January 2004 @@ -21109,19 +21218,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdocker/libnetwork v0.8.0-dev.2.0.20210525090646-64b7a4574d14 - Apache-2.0 - - -copyright 2015 Docker, inc. -Copyright 2014-2016 The Docker & Go Authors -Copyright (c) 2014-2016 The Docker & Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdocker/libtrust v0.0.0-20150114040149-fa567046d9b1 - Apache-2.0 + + +Copyright 2014 Docker, Inc. +copyright 2014 Docker, inc. + Apache License Version 2.0, January 2004 @@ -21218,18 +21326,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdocker/libtrust v0.0.0-20150114040149-fa567046d9b1 - Apache-2.0 - - -Copyright 2014 Docker, Inc. -copyright 2014 Docker, inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdvyukov/go-fuzz v0.0.0-20210103155950-6a8e9d1f2415 - Apache-2.0 + + +Copyright 2011-2015 Twitter, Inc. +Copyright 2014-2015 Twitter, Inc. +(c) 2005, 2015 jQuery Foundation, Inc. +Copyright 2015 go-fuzz project authors +Copyright 2016 go-fuzz project authors +Copyright 2018 go-fuzz project authors +Copyright 2019 go-fuzz project authors + Apache License Version 2.0, January 2004 @@ -21326,23 +21439,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdvyukov/go-fuzz v0.0.0-20210103155950-6a8e9d1f2415 - Apache-2.0 - - -Copyright 2011-2015 Twitter, Inc. -Copyright 2014-2015 Twitter, Inc. -(c) 2005, 2015 jQuery Foundation, Inc. -Copyright 2015 go-fuzz project authors -Copyright 2016 go-fuzz project authors -Copyright 2018 go-fuzz project authors -Copyright 2019 go-fuzz project authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fenvoyproxy/go-control-plane v0.12.0 - Apache-2.0 + + +Copyright 2018 Envoyproxy +Copyright 2019 Envoyproxy +Copyright 2020 Envoyproxy +Copyright 2022 Envoyproxy +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -21439,21 +21550,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fenvoyproxy/go-control-plane v0.12.0 - Apache-2.0 - - -Copyright 2018 Envoyproxy -Copyright 2019 Envoyproxy -Copyright 2020 Envoyproxy -Copyright 2022 Envoyproxy -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fenvoyproxy/protoc-gen-validate v1.0.4 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -21550,16 +21656,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fenvoyproxy/protoc-gen-validate v1.0.4 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgiantswarm/microerror v0.4.1 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -21656,16 +21762,24 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgiantswarm/microerror v0.4.1 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgo-jose%2fgo-jose/v3 v3.0.1 - Apache-2.0 + + +Copyright 2014 Square Inc. +Copyright 2017 Square Inc. +Copyright 2018 Square Inc. +Copyright 2016 Square, Inc. +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright (c) 2012 The Go Authors +Copyright 2016 Zbigniew Mandziejewicz + Apache License Version 2.0, January 2004 @@ -21762,24 +21876,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgo-jose%2fgo-jose/v3 v3.0.1 - Apache-2.0 - - -Copyright 2014 Square Inc. -Copyright 2017 Square Inc. -Copyright 2018 Square Inc. -Copyright 2016 Square, Inc. -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright (c) 2012 The Go Authors -Copyright 2016 Zbigniew Mandziejewicz - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgolang/glog v1.2.0 - Apache-2.0 + + +Copyright 2023 Google Inc. + Apache License Version 2.0, January 2004 @@ -21876,17 +21983,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgolang/glog v1.2.0 - Apache-2.0 - - -Copyright 2023 Google Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgolang/groupcache v0.0.0-20210331224755-41bb18bfe9da - Apache-2.0 + + +Copyright 2012 Google Inc. +Copyright 2013 Google Inc. + Apache License Version 2.0, January 2004 @@ -21983,18 +22091,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgolang/groupcache v0.0.0-20210331224755-41bb18bfe9da - Apache-2.0 - - -Copyright 2012 Google Inc. -Copyright 2013 Google Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgolang/mock v1.6.0 - Apache-2.0 + + +Copyright 2019 Google LLC +Copyright 2020 Google LLC +Copyright 2010 Google Inc. +Copyright 2010 Google LLC. +Copyright 2011 Google Inc. +Copyright 2012 Google Inc. +Copyright 2020 Google Inc. + Apache License Version 2.0, January 2004 @@ -22091,23 +22204,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgolang/mock v1.6.0 - Apache-2.0 - - -Copyright 2019 Google LLC -Copyright 2020 Google LLC -Copyright 2010 Google Inc. -Copyright 2010 Google LLC. -Copyright 2011 Google Inc. -Copyright 2012 Google Inc. -Copyright 2020 Google Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgolang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe - Apache-2.0 + + +Copyright 2016 Google LLC + Apache License Version 2.0, January 2004 @@ -22204,17 +22311,22 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgolang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe - Apache-2.0 - - -Copyright 2016 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-logr/logr v1.4.1 - Apache-2.0 + + +Copyright 2019 The logr +Copyright 2020 The logr +Copyright 2021 The logr +Copyright 2022 The logr +Copyright 2023 The logr +Copyright 2020 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -22311,22 +22423,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-logr/logr v1.4.1 - Apache-2.0 - - -Copyright 2019 The logr -Copyright 2020 The logr -Copyright 2021 The logr -Copyright 2022 The logr -Copyright 2023 The logr -Copyright 2020 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-logr/stdr v1.2.2 - Apache-2.0 + + +Copyright 2019 The logr +Copyright 2021 The logr +Copyright 2020 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -22423,19 +22532,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-logr/stdr v1.2.2 - Apache-2.0 - - -Copyright 2019 The logr -Copyright 2021 The logr -Copyright 2020 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-logr/zapr v1.2.3 - Apache-2.0 + + +Copyright 2019 The logr +Copyright 2021 The logr +Copyright 2018 Solly Ross +Copyright 2020 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -22532,20 +22642,22 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-logr/zapr v1.2.3 - Apache-2.0 - - -Copyright 2019 The logr -Copyright 2021 The logr -Copyright 2018 Solly Ross -Copyright 2020 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgomodule/redigo v1.8.2 - Apache-2.0 + + +Copyright 2011 Gary Burd +Copyright 2012 Gary Burd +Copyright 2013 Gary Burd +Copyright 2014 Gary Burd +Copyright 2017 Gary Burd +Copyright 2018 Gary Burd + Apache License Version 2.0, January 2004 @@ -22642,22 +22754,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgomodule/redigo v1.8.2 - Apache-2.0 - - -Copyright 2011 Gary Burd -Copyright 2012 Gary Burd -Copyright 2013 Gary Burd -Copyright 2014 Gary Burd -Copyright 2017 Gary Burd -Copyright 2018 Gary Burd - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle%2Frenameio/v2 v2.0.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -22754,16 +22860,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle%2Frenameio/v2 v2.0.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle/btree v1.1.2 - Apache-2.0 + + +(c) OnWriteContext T +Copyright 2014 Google Inc. +Copyright 2014-2022 Google Inc. + Apache License Version 2.0, January 2004 @@ -22860,19 +22969,25 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle/btree v1.1.2 - Apache-2.0 - - -(c) OnWriteContext T -Copyright 2014 Google Inc. -Copyright 2014-2022 Google Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle/gnostic v0.5.7-v3refs - Apache-2.0 + + +Copyright 2008 Google Inc. +Copyright 2016 Google LLC. +Copyright 2017 Google LLC. +Copyright 2018 Google LLC. +Copyright 2019 Google LLC. +Copyright 2020 Google LLC. +Copyright 2021 Google LLC. +Copyright (c) 2015, Google Inc. +Copyright 2017-2020, Google LLC. + Apache License Version 2.0, January 2004 @@ -22969,25 +23084,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle/gnostic v0.5.7-v3refs - Apache-2.0 - - -Copyright 2008 Google Inc. -Copyright 2016 Google LLC. -Copyright 2017 Google LLC. -Copyright 2018 Google LLC. -Copyright 2019 Google LLC. -Copyright 2020 Google LLC. -Copyright 2021 Google LLC. -Copyright (c) 2015, Google Inc. -Copyright 2017-2020, Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle/gnostic-models v0.6.9-0.20230804172637-c7be7c783f49 - Apache-2.0 + + +Copyright 2017 Google LLC. +Copyright 2019 Google LLC. +Copyright 2020 Google LLC. +Copyright 2022 Google LLC. +Copyright 2017-2022, Google LLC. + Apache License Version 2.0, January 2004 @@ -23084,21 +23195,24 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle/gnostic-models v0.6.9-0.20230804172637-c7be7c783f49 - Apache-2.0 - - -Copyright 2017 Google LLC. -Copyright 2019 Google LLC. -Copyright 2020 Google LLC. -Copyright 2022 Google LLC. -Copyright 2017-2022, Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle/go-containerregistry v0.17.0 - Apache-2.0 + + +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2014 The Kubernetes Authors. +Copyright 2019 The original author or authors + Apache License Version 2.0, January 2004 @@ -23195,24 +23309,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle/go-containerregistry v0.17.0 - Apache-2.0 - - -Copyright 2018 Google LLC -Copyright 2019 Google LLC -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2014 The Kubernetes Authors. -Copyright 2019 The original author or authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle/gofuzz v1.2.0 - Apache-2.0 + + +Copyright 2014 Google Inc. + Apache License Version 2.0, January 2004 @@ -23309,17 +23416,25 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle/gofuzz v1.2.0 - Apache-2.0 - - -Copyright 2014 Google Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle/pprof v0.0.0-20210720184732-4bb14d4b1be1 - Apache-2.0 + + +Copyright 2014 Google Inc. +Copyright 2016 Google Inc. +Copyright 2017 Google Inc. +Copyright 2018 Google Inc. +Copyright 2019 Google Inc. +Copyright (c) 2013 Justin Palmer +Copyright 2010-2017 Mike Bostock +Copyright (c) 2020 Free Software Foundation +Copyright 2009-2017 Andrea Leofreddi + Apache License Version 2.0, January 2004 @@ -23416,25 +23531,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle/pprof v0.0.0-20210720184732-4bb14d4b1be1 - Apache-2.0 - - -Copyright 2014 Google Inc. -Copyright 2016 Google Inc. -Copyright 2017 Google Inc. -Copyright 2018 Google Inc. -Copyright 2019 Google Inc. -Copyright (c) 2013 Justin Palmer -Copyright 2010-2017 Mike Bostock -Copyright (c) 2020 Free Software Foundation -Copyright 2009-2017 Andrea Leofreddi - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgoogle/s2a-go v0.1.7 - Apache-2.0 + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC + Apache License Version 2.0, January 2004 @@ -23531,19 +23640,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgoogle/s2a-go v0.1.7 - Apache-2.0 - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle/shlex v0.0.0-20191202100458-e7afc7fbc510 - Apache-2.0 + + +Copyright 2012 Google Inc. + Apache License Version 2.0, January 2004 @@ -23640,17 +23747,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle/shlex v0.0.0-20191202100458-e7afc7fbc510 - Apache-2.0 - - -Copyright 2012 Google Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgoogleapis/enterprise-certificate-proxy v0.3.2 - Apache-2.0 + + +Copyright 2022 Google LLC. +Copyright 2023 Google LLC. + Apache License Version 2.0, January 2004 @@ -23747,18 +23855,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgoogleapis/enterprise-certificate-proxy v0.3.2 - Apache-2.0 - - -Copyright 2022 Google LLC. -Copyright 2023 Google LLC. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogleapis/google-cloud-go-testing v0.0.0-20210719221736-1c9a4c676720 - Apache-2.0 + + +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2018 Google Inc. + Apache License Version 2.0, January 2004 @@ -23855,19 +23964,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogleapis/google-cloud-go-testing v0.0.0-20210719221736-1c9a4c676720 - Apache-2.0 - - -Copyright 2018 Google LLC -Copyright 2019 Google LLC -Copyright 2018 Google Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-openapi/analysis v0.21.4 - Apache-2.0 + + +Copyright 2015 go-swagger +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -23964,18 +24072,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-openapi/analysis v0.21.4 - Apache-2.0 - - -Copyright 2015 go-swagger -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgo-openapi/errors v0.20.4 - Apache-2.0 + + +Copyright 2015 go-swagger +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -24072,18 +24180,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgo-openapi/errors v0.20.4 - Apache-2.0 - - -Copyright 2015 go-swagger -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-openapi/jsonpointer v0.20.0 - Apache-2.0 + + +Copyright 2013 sigu-399 https://github.com/sigu-399 +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -24180,18 +24288,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-openapi/jsonpointer v0.20.0 - Apache-2.0 - - -Copyright 2013 sigu-399 https://github.com/sigu-399 -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-openapi/jsonreference v0.20.2 - Apache-2.0 + + +Copyright 2013 sigu-399 https://github.com/sigu-399 +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -24288,18 +24396,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-openapi/jsonreference v0.20.2 - Apache-2.0 - - -Copyright 2013 sigu-399 https://github.com/sigu-399 -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-openapi/loads v0.21.2 - Apache-2.0 + + +Copyright 2015 go-swagger +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -24396,18 +24504,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-openapi/loads v0.21.2 - Apache-2.0 - - -Copyright 2015 go-swagger -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgo-openapi/runtime v0.26.2 - Apache-2.0 + + +Copyright 2015 go-swagger +Copyright 2013 The Go Authors +Copyright (c) 2014 Naoya Inada +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -24504,20 +24614,19 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgo-openapi/runtime v0.26.2 - Apache-2.0 - - -Copyright 2015 go-swagger -Copyright 2013 The Go Authors -Copyright (c) 2014 Naoya Inada -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-openapi/spec v0.20.11 - Apache-2.0 + + +Copyright 2015 go-swagger +Copyright 2017 go-swagger +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -24614,19 +24723,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-openapi/spec v0.20.11 - Apache-2.0 - - -Copyright 2015 go-swagger -Copyright 2017 go-swagger -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-openapi/strfmt v0.21.9 - Apache-2.0 + + +Copyright 2015 go-swagger +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -24723,18 +24831,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-openapi/strfmt v0.21.9 - Apache-2.0 - - -Copyright 2015 go-swagger -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgo-openapi/swag v0.22.4 - Apache-2.0 + + +Copyright 2015 go-swagger +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -24831,18 +24939,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgo-openapi/swag v0.22.4 - Apache-2.0 - - -Copyright 2015 go-swagger -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-openapi/validate v0.22.3 - Apache-2.0 + + +Copyright 2015 go-swagger +Copyright 2017 go-swagger +Copyright 2018 go-swagger +Copyright (c) 2004, 2006 The Linux Foundation and its contributors +(c) 2016 Microsoft', termsOfService' https://www.microsoft.com/en-us/legal/intellectualproperty/copyright/default.aspx + Apache License Version 2.0, January 2004 @@ -24939,21 +25050,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-openapi/validate v0.22.3 - Apache-2.0 - - -Copyright 2015 go-swagger -Copyright 2017 go-swagger -Copyright 2018 go-swagger -Copyright (c) 2004, 2006 The Linux Foundation and its contributors -(c) 2016 Microsoft', termsOfService' https://www.microsoft.com/en-us/legal/intellectualproperty/copyright/default.aspx - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgrpc-ecosystem/go-grpc-middleware v1.3.0 - Apache-2.0 + + +Copyright 2017 David Ackroyd +Copyright 2016 Michal Witkowski +Copyright 2017 Michal Witkowski +Copyright (c) Improbable Worlds Ltd + Apache License Version 2.0, January 2004 @@ -25050,20 +25160,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgrpc-ecosystem/go-grpc-middleware v1.3.0 - Apache-2.0 - - -Copyright 2017 David Ackroyd -Copyright 2016 Michal Witkowski -Copyright 2017 Michal Witkowski -Copyright (c) Improbable Worlds Ltd - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgrpc-ecosystem/go-grpc-prometheus v1.2.0 - Apache-2.0 + + +Copyright 2016 Michal Witkowski + Apache License Version 2.0, January 2004 @@ -25160,17 +25267,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgrpc-ecosystem/go-grpc-prometheus v1.2.0 - Apache-2.0 - - -Copyright 2016 Michal Witkowski - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Finconshreveable/mousetrap v1.1.0 - Apache-2.0 + + +Copyright 2022 Alan Shreve + Apache License Version 2.0, January 2004 @@ -25267,17 +25374,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Finconshreveable/mousetrap v1.1.0 - Apache-2.0 - - -Copyright 2022 Alan Shreve - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fintel/goresctrl v0.3.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -25374,16 +25480,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fintel/goresctrl v0.3.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjmespath/go-jmespath v0.4.0 - Apache-2.0 + + +Copyright 2015 James Saryerwinnie + Apache License Version 2.0, January 2004 @@ -25480,17 +25587,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjmespath/go-jmespath v0.4.0 - Apache-2.0 - - -Copyright 2015 James Saryerwinnie - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjonboulle/clockwork v0.2.2 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -25587,16 +25693,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjonboulle/clockwork v0.2.2 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkylelemons/godebug v1.1.0 - Apache-2.0 + + +Copyright 2013 Google Inc. + Apache License Version 2.0, January 2004 @@ -25693,17 +25800,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkylelemons/godebug v1.1.0 - Apache-2.0 - - -Copyright 2013 Google Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flinuxkit/virtsock v0.0.0-20201010232012-f8cee7dfc7a3 - Apache-2.0 + + +Copyright 2016-2017 The +Copyright (c) 2015 Microsoft + Apache License Version 2.0, January 2004 @@ -25800,18 +25908,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flinuxkit/virtsock v0.0.0-20201010232012-f8cee7dfc7a3 - Apache-2.0 - - -Copyright 2016-2017 The -Copyright (c) 2015 Microsoft - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flyft%2Fprotoc-gen-star/v2 v2.0.3 - Apache-2.0 + + +Copyright (c) s + Apache License Version 2.0, January 2004 @@ -25908,17 +26015,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flyft%2Fprotoc-gen-star/v2 v2.0.3 - Apache-2.0 - - -Copyright (c) s - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmasterminds/goutils v1.1.1 - Apache-2.0 + + +Copyright 2014 Alexander Okoli + Apache License Version 2.0, January 2004 @@ -26015,17 +26122,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmasterminds/goutils v1.1.1 - Apache-2.0 - - -Copyright 2014 Alexander Okoli - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmatttproud%2Fgolang_protobuf_extensions/v2 v2.0.0 - Apache-2.0 + + +Copyright 2013 Matt T. Proud +Copyright 2016 Matt T. Proud +Copyright 2022 Matt T. Proud +Copyright 2012 Matt T. Proud (matt.proud@gmail.com) + Apache License Version 2.0, January 2004 @@ -26122,20 +26232,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmatttproud%2Fgolang_protobuf_extensions/v2 v2.0.0 - Apache-2.0 - - -Copyright 2013 Matt T. Proud -Copyright 2016 Matt T. Proud -Copyright 2022 Matt T. Proud -Copyright 2012 Matt T. Proud (matt.proud@gmail.com) - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmatttproud/golang_protobuf_extensions v1.0.4 - Apache-2.0 + + +Copyright 2013 Matt T. Proud +Copyright 2016 Matt T. Proud +Copyright 2010 The Go Authors +Copyright 2012 Matt T. Proud (matt.proud@gmail.com) + Apache License Version 2.0, January 2004 @@ -26232,20 +26342,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmatttproud/golang_protobuf_extensions v1.0.4 - Apache-2.0 - - -Copyright 2013 Matt T. Proud -Copyright 2016 Matt T. Proud -Copyright 2010 The Go Authors -Copyright 2012 Matt T. Proud (matt.proud@gmail.com) - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fminio/sha256-simd v1.0.0 - Apache-2.0 + + +(c) 2016 Minio, Inc. +(c) 2017 Minio, Inc. +(c) 2019 Minio, Inc. +(c) 2021 Minio, Inc. +Kristofer Peterson, (c) 2018 +Copyright (c) 2009 The Go Authors +Copyright (c) 2017, Intel Corporation + Apache License Version 2.0, January 2004 @@ -26342,23 +26455,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fminio/sha256-simd v1.0.0 - Apache-2.0 - - -(c) 2016 Minio, Inc. -(c) 2017 Minio, Inc. -(c) 2019 Minio, Inc. -(c) 2021 Minio, Inc. -Kristofer Peterson, (c) 2018 -Copyright (c) 2009 The Go Authors -Copyright (c) 2017, Intel Corporation - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmistifyio%2Fgo-zfs/v3 v3.0.1 - Apache-2.0 + + +Copyright (c) 2014, OmniTI Computer Consulting, Inc. + Apache License Version 2.0, January 2004 @@ -26455,17 +26562,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmistifyio%2Fgo-zfs/v3 v3.0.1 - Apache-2.0 - - -Copyright (c) 2014, OmniTI Computer Consulting, Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmoby%2Fsys/mountinfo v0.7.1 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -26562,16 +26668,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmoby%2Fsys/mountinfo v0.7.1 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmoby%2Fsys/sequential v0.5.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -26668,16 +26774,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmoby%2Fsys/sequential v0.5.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmoby%2Fsys/signal v0.7.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -26774,16 +26880,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmoby%2Fsys/signal v0.7.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmoby%2Fsys/user v0.1.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -26880,16 +26986,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmoby%2Fsys/user v0.1.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmoby/locker v1.0.1 - Apache-2.0 + + +Copyright 2013-2018 Docker, Inc. + Apache License Version 2.0, January 2004 @@ -26986,17 +27093,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmoby/locker v1.0.1 - Apache-2.0 - - -Copyright 2013-2018 Docker, Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmoby/spdystream v0.2.0 - Apache-2.0 + + +Copyright 2011 The Go Authors +Copyright 2013 The Go Authors +Copyright 2014-2021 Docker Inc. +Copyright 2013-2021 Docker, inc. + Apache License Version 2.0, January 2004 @@ -27093,20 +27203,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmoby/spdystream v0.2.0 - Apache-2.0 - - -Copyright 2011 The Go Authors -Copyright 2013 The Go Authors -Copyright 2014-2021 Docker Inc. -Copyright 2013-2021 Docker, inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmoby/term v0.5.0 - Apache-2.0 + + +copyright 2015 Docker, inc. +Copyright 2013-2018 Docker, Inc. + Apache License Version 2.0, January 2004 @@ -27203,18 +27311,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmoby/term v0.5.0 - Apache-2.0 - - -copyright 2015 Docker, inc. -Copyright 2013-2018 Docker, Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmodern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -27311,16 +27417,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmodern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmodern-go/reflect2 v1.0.2 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -27417,16 +27523,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmodern-go/reflect2 v1.0.2 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f - Apache-2.0 + + +Copyright 2016 Michal Witkowski + Apache License Version 2.0, January 2004 @@ -27523,17 +27630,43 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f - Apache-2.0 - - -Copyright 2016 Michal Witkowski - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fnats-io/nats.go v1.31.0 - Apache-2.0 + + +Copyright 2022 The NATS Authors +Copyright 2023 The NATS Authors +Copyright 2012-2018 The NATS Authors +Copyright 2012-2019 The NATS Authors +Copyright 2012-2020 The NATS Authors +Copyright 2012-2021 The NATS Authors +Copyright 2012-2022 The NATS Authors +Copyright 2012-2023 The NATS Authors +Copyright 2013-2018 The NATS Authors +Copyright 2013-2019 The NATS Authors +Copyright 2013-2020 The NATS Authors +Copyright 2013-2022 The NATS Authors +Copyright 2015-2019 The NATS Authors +Copyright 2015-2020 The NATS Authors +Copyright 2015-2021 The NATS Authors +Copyright 2016-2019 The NATS Authors +Copyright 2016-2022 The NATS Authors +Copyright 2017-2022 The NATS Authors +Copyright 2018-2020 The NATS Authors +Copyright 2018-2022 The NATS Authors +Copyright 2019-2023 The NATS Authors +Copyright 2020-2021 The NATS Authors +Copyright 2020-2022 The NATS Authors +Copyright 2020-2023 The NATS Authors +Copyright 2021-2022 The NATS Authors +Copyright 2021-2023 The NATS Authors +Copyright 2022-2023 The NATS Authors + Apache License Version 2.0, January 2004 @@ -27630,43 +27763,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fnats-io/nats.go v1.31.0 - Apache-2.0 - - -Copyright 2022 The NATS Authors -Copyright 2023 The NATS Authors -Copyright 2012-2018 The NATS Authors -Copyright 2012-2019 The NATS Authors -Copyright 2012-2020 The NATS Authors -Copyright 2012-2021 The NATS Authors -Copyright 2012-2022 The NATS Authors -Copyright 2012-2023 The NATS Authors -Copyright 2013-2018 The NATS Authors -Copyright 2013-2019 The NATS Authors -Copyright 2013-2020 The NATS Authors -Copyright 2013-2022 The NATS Authors -Copyright 2015-2019 The NATS Authors -Copyright 2015-2020 The NATS Authors -Copyright 2015-2021 The NATS Authors -Copyright 2016-2019 The NATS Authors -Copyright 2016-2022 The NATS Authors -Copyright 2017-2022 The NATS Authors -Copyright 2018-2020 The NATS Authors -Copyright 2018-2022 The NATS Authors -Copyright 2019-2023 The NATS Authors -Copyright 2020-2021 The NATS Authors -Copyright 2020-2022 The NATS Authors -Copyright 2020-2023 The NATS Authors -Copyright 2021-2022 The NATS Authors -Copyright 2021-2023 The NATS Authors -Copyright 2022-2023 The NATS Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fnats-io/nkeys v0.4.6 - Apache-2.0 + + +Copyright 2018 The NATS Authors +Copyright 2022 The NATS Authors +Copyright 2023 The NATS Authors +Copyright 2018-2019 The NATS Authors +Copyright 2018-2022 The NATS Authors +Copyright 2018-2023 The NATS Authors +Copyright 2022-2023 The NATS Authors + Apache License Version 2.0, January 2004 @@ -27763,23 +27876,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fnats-io/nkeys v0.4.6 - Apache-2.0 - - -Copyright 2018 The NATS Authors -Copyright 2022 The NATS Authors -Copyright 2023 The NATS Authors -Copyright 2018-2019 The NATS Authors -Copyright 2018-2022 The NATS Authors -Copyright 2018-2023 The NATS Authors -Copyright 2022-2023 The NATS Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fnats-io/nuid v1.0.1 - Apache-2.0 + + +Copyright 2016-2018 The NATS Authors +Copyright 2016-2019 The NATS Authors + Apache License Version 2.0, January 2004 @@ -27876,18 +27984,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fnats-io/nuid v1.0.1 - Apache-2.0 - - -Copyright 2016-2018 The NATS Authors -Copyright 2016-2019 The NATS Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fnytimes/gziphandler v1.1.1 - Apache-2.0 + + +Copyright 2016-2017 The New York Times Company + Apache License Version 2.0, January 2004 @@ -27984,17 +28091,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fnytimes/gziphandler v1.1.1 - Apache-2.0 - - -Copyright 2016-2017 The New York Times Company - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Foklog/ulid v1.3.1 - Apache-2.0 + + +Copyright 2016 The Oklog Authors + Apache License Version 2.0, January 2004 @@ -28091,17 +28198,22 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Foklog/ulid v1.3.1 - Apache-2.0 - - -Copyright 2016 The Oklog Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fopencontainers/image-spec v1.1.0 - Apache-2.0 + + +ChainID (c) DiffID (c) +Copyright 2016 The Linux Foundation +Copyright 2017 The Linux Foundation +Copyright 2018 The Linux Foundation +Copyright 2016-2022 The Linux Foundation +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -28198,22 +28310,34 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fopencontainers/image-spec v1.1.0 - Apache-2.0 - - -ChainID (c) DiffID (c) -Copyright 2016 The Linux Foundation -Copyright 2017 The Linux Foundation -Copyright 2018 The Linux Foundation -Copyright 2016-2022 The Linux Foundation -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fopencontainers/runc v1.1.12 - Apache-2.0 + + +Copyright 2016 SUSE LLC +Copyright (c) 2019 SUSE LLC +Copyright (c) 2020 SUSE LLC +Copyright 2014 Docker, Inc. +copyright 2014 Docker, inc. +Copyright (c) 2017 SUSE LLC. +Copyright (c) 2023 SUSE LLC. +Copyright 2016, 2017 SUSE LLC +Copyright (C) 2019 Aleksa Sarai +Copyright (C) 2020 Aleksa Sarai +Copyright 2012-2015 Docker, Inc. +Copyright (c) 2017-2023 SUSE LLC. +Copyright (c) 2023 Open Containers Authors +Copyright (c) 2017-2021 Open Containers Authors +Copyright (c) 2017-2023 Open Containers Authors +Copyright (c) 2019 Aleksa Sarai +Copyright (c) 2020 Aleksa Sarai +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -28310,34 +28434,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fopencontainers/runc v1.1.12 - Apache-2.0 - - -Copyright 2016 SUSE LLC -Copyright (c) 2019 SUSE LLC -Copyright (c) 2020 SUSE LLC -Copyright 2014 Docker, Inc. -copyright 2014 Docker, inc. -Copyright (c) 2017 SUSE LLC. -Copyright (c) 2023 SUSE LLC. -Copyright 2016, 2017 SUSE LLC -Copyright (C) 2019 Aleksa Sarai -Copyright (C) 2020 Aleksa Sarai -Copyright 2012-2015 Docker, Inc. -Copyright (c) 2017-2023 SUSE LLC. -Copyright (c) 2023 Open Containers Authors -Copyright (c) 2017-2021 Open Containers Authors -Copyright (c) 2017-2023 Open Containers Authors -Copyright (c) 2019 Aleksa Sarai -Copyright (c) 2020 Aleksa Sarai -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fopencontainers/runtime-spec v1.2.0 - Apache-2.0 + + +Copyright 2015 The Linux Foundation +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -28434,18 +28542,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fopencontainers/runtime-spec v1.2.0 - Apache-2.0 - - -Copyright 2015 The Linux Foundation -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fopencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 - Apache-2.0 + + +Copyright 2013-2016 Docker, Inc. +Copyright 2015 The Linux Foundation +Copyright (c) 2014-2018 W. Trevor King +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -28542,20 +28652,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fopencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 - Apache-2.0 - - -Copyright 2013-2016 Docker, Inc. -Copyright 2015 The Linux Foundation -Copyright (c) 2014-2018 W. Trevor King -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fopencontainers/selinux v1.11.0 - Apache-2.0 + + +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -28652,17 +28759,68 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fopencontainers/selinux v1.11.0 - Apache-2.0 - - -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fopen-policy-agent/opa v0.42.2 - Apache-2.0 + + +WithCompiler (c) +(c) now.Format 2006 +Copyright 2017-2020 +Copyright 2021 icza +Copyright 2015 xeipuuv +Copyright (c) 2015 lestrrat +Copyright 2013 MongoDB, Inc. +copyright 2021 Jeremy Thomas +Copyright 2011 The Go Authors +Copyright (c) 2019 Bryan Braun +Copyright 2004 The RE2 Authors +Copyright 2006 The RE2 Authors +Copyright 2007 The RE2 Authors +Copyright 2008 The RE2 Authors +Copyright 2009 The RE2 Authors +Copyright 2016 The OPA Authors +Copyright 2016 The RE2 Authors +Copyright 2017 The OPA Authors +Copyright 2018 The OPA Authors +Copyright 2018 The RE2 Authors +Copyright 2019 The OPA Authors +Copyright 2020 The OPA Authors +Copyright 2021 The OPA Authors +Copyright 2022 The OPA Authors +Copyright (c) 2020 Jeremy Thomas +Copyright 2013-2015 CoreOS, Inc. +Copyright (c) 2012 Rodrigo Moraes +Copyright 2011-2019 Twitter, Inc. +(c) UNIX System Laboratories, Inc. +Copyright (c) 2016 Sergey Kamardin +Copyright 2012 The Gorilla Authors +Copyright (c) 2008-2016 Stefan Krah +Copyright 1999-2005 The RE2 Authors +Copyright 2001-2010 The RE2 Authors +Copyright 2003-2009 The RE2 Authors +Copyright 2006-2007 The RE2 Authors +Copyright (c) 2002 by Lucent Technologies +Copyright 2011-2019 The Bootstrap Authors +Copyright (c) 2015-present, Facebook, Inc. +Copyright (c) 1993 by Sun Microsystems, Inc. +Copyright (c) 2005-2019, Jouni Malinen +Copyright 2015 xeipuuv https://github.com/xeipuuv +copyright 2014 Waybury. https://useiconic.com/open +Copyright (c) 2016 Federico Zivolo and contributors +Copyright (c) 1996,1999 by Internet Software Consortium +Copyright (c) 2004 by Internet Systems Consortium, Inc. +Copyright 2017 johandorland https://github.com/johandorland +Copyright 2018 johandorland https://github.com/johandorland +Copyright (c) 1990, 1993 The Regents of the University of California +(c) Marco Paland (info@paland.com) 2014-2019, PALANDesign Hannover, Germany +Copyright (c) 1982, 1986, 1989, 1993 The Regents of the University of California +Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) + Apache License Version 2.0, January 2004 @@ -28759,68 +28917,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fopen-policy-agent/opa v0.42.2 - Apache-2.0 - - -WithCompiler (c) -(c) now.Format 2006 -Copyright 2017-2020 -Copyright 2021 icza -Copyright 2015 xeipuuv -Copyright (c) 2015 lestrrat -Copyright 2013 MongoDB, Inc. -copyright 2021 Jeremy Thomas -Copyright 2011 The Go Authors -Copyright (c) 2019 Bryan Braun -Copyright 2004 The RE2 Authors -Copyright 2006 The RE2 Authors -Copyright 2007 The RE2 Authors -Copyright 2008 The RE2 Authors -Copyright 2009 The RE2 Authors -Copyright 2016 The OPA Authors -Copyright 2016 The RE2 Authors -Copyright 2017 The OPA Authors -Copyright 2018 The OPA Authors -Copyright 2018 The RE2 Authors -Copyright 2019 The OPA Authors -Copyright 2020 The OPA Authors -Copyright 2021 The OPA Authors -Copyright 2022 The OPA Authors -Copyright (c) 2020 Jeremy Thomas -Copyright 2013-2015 CoreOS, Inc. -Copyright (c) 2012 Rodrigo Moraes -Copyright 2011-2019 Twitter, Inc. -(c) UNIX System Laboratories, Inc. -Copyright (c) 2016 Sergey Kamardin -Copyright 2012 The Gorilla Authors -Copyright (c) 2008-2016 Stefan Krah -Copyright 1999-2005 The RE2 Authors -Copyright 2001-2010 The RE2 Authors -Copyright 2003-2009 The RE2 Authors -Copyright 2006-2007 The RE2 Authors -Copyright (c) 2002 by Lucent Technologies -Copyright 2011-2019 The Bootstrap Authors -Copyright (c) 2015-present, Facebook, Inc. -Copyright (c) 1993 by Sun Microsystems, Inc. -Copyright (c) 2005-2019, Jouni Malinen -Copyright 2015 xeipuuv https://github.com/xeipuuv -copyright 2014 Waybury. https://useiconic.com/open -Copyright (c) 2016 Federico Zivolo and contributors -Copyright (c) 1996,1999 by Internet Software Consortium -Copyright (c) 2004 by Internet Systems Consortium, Inc. -Copyright 2017 johandorland https://github.com/johandorland -Copyright 2018 johandorland https://github.com/johandorland -Copyright (c) 1990, 1993 The Regents of the University of California -(c) Marco Paland (info@paland.com) 2014-2019, PALANDesign Hannover, Germany -Copyright (c) 1982, 1986, 1989, 1993 The Regents of the University of California -Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fopentracing/opentracing-go v1.2.1-0.20220228012449-10b1cf09e00b - Apache-2.0 + + +Copyright 2016 The OpenTracing Authors + Apache License Version 2.0, January 2004 @@ -28917,17 +29024,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fopentracing/opentracing-go v1.2.1-0.20220228012449-10b1cf09e00b - Apache-2.0 - - -Copyright 2016 The OpenTracing Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fpetermattis/goid v0.0.0-20180202154549-b0b1615b78e5 - Apache-2.0 + + +Copyright 2015 Peter Mattis +Copyright 2016 Peter Mattis +Copyright 2018 Peter Mattis +Copyright 2014 The Go Authors + Apache License Version 2.0, January 2004 @@ -29024,20 +29134,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fpetermattis/goid v0.0.0-20180202154549-b0b1615b78e5 - Apache-2.0 - - -Copyright 2015 Peter Mattis -Copyright 2016 Peter Mattis -Copyright 2018 Peter Mattis -Copyright 2014 The Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fpquerna/cachecontrol v0.1.0 - Apache-2.0 + + +Copyright 2015 Paul Querna +Copyright 2009 The Go Authors + Apache License Version 2.0, January 2004 @@ -29134,18 +29242,32 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fpquerna/cachecontrol v0.1.0 - Apache-2.0 - - -Copyright 2015 Paul Querna -Copyright 2009 The Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fprometheus/client_golang v1.19.0 - Apache-2.0 + + +Copyright 2013 Matt T. Proud +Copyright 2010 The Go Authors +Copyright (c) 2015 Bjorn Rabenstein +Copyright 2014 The Prometheus Authors +Copyright 2015 The Prometheus Authors +Copyright 2016 The Prometheus Authors +Copyright 2017 The Prometheus Authors +Copyright 2018 The Prometheus Authors +Copyright 2019 The Prometheus Authors +Copyright 2020 The Prometheus Authors +Copyright 2021 The Prometheus Authors +Copyright 2022 The Prometheus Authors +Copyright 2023 The Prometheus Authors +Copyright (c) 2013, The Prometheus Authors +Copyright 2012-2015 The Prometheus Authors +Copyright 2013-2015 Blake Mizerany, Bjorn Rabenstein + Apache License Version 2.0, January 2004 @@ -29242,32 +29364,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fprometheus/client_golang v1.19.0 - Apache-2.0 - - -Copyright 2013 Matt T. Proud -Copyright 2010 The Go Authors -Copyright (c) 2015 Bjorn Rabenstein -Copyright 2014 The Prometheus Authors -Copyright 2015 The Prometheus Authors -Copyright 2016 The Prometheus Authors -Copyright 2017 The Prometheus Authors -Copyright 2018 The Prometheus Authors -Copyright 2019 The Prometheus Authors -Copyright 2020 The Prometheus Authors -Copyright 2021 The Prometheus Authors -Copyright 2022 The Prometheus Authors -Copyright 2023 The Prometheus Authors -Copyright (c) 2013, The Prometheus Authors -Copyright 2012-2015 The Prometheus Authors -Copyright 2013-2015 Blake Mizerany, Bjorn Rabenstein - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fprometheus/client_model v0.6.0 - Apache-2.0 + + +Copyright 2013 Prometheus Team +Copyright 2012-2015 The Prometheus Authors + Apache License Version 2.0, January 2004 @@ -29364,18 +29472,28 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fprometheus/client_model v0.6.0 - Apache-2.0 - - -Copyright 2013 Prometheus Team -Copyright 2012-2015 The Prometheus Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fprometheus/procfs v0.12.0 - Apache-2.0 + + +Copyright 2017 Roger Luethi +Copyright 2014 Prometheus Team +Copyright 2017 Prometheus Team +(c) HGST, a Western Digital Company +Copyright 2017 The Prometheus Authors +Copyright 2018 The Prometheus Authors +Copyright 2019 The Prometheus Authors +Copyright 2020 The Prometheus Authors +Copyright 2021 The Prometheus Authors +Copyright 2022 The Prometheus Authors +Copyright 2023 The Prometheus Authors +Copyright 2014-2015 The Prometheus Authors + Apache License Version 2.0, January 2004 @@ -29472,28 +29590,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fprometheus/procfs v0.12.0 - Apache-2.0 - - -Copyright 2017 Roger Luethi -Copyright 2014 Prometheus Team -Copyright 2017 Prometheus Team -(c) HGST, a Western Digital Company -Copyright 2017 The Prometheus Authors -Copyright 2018 The Prometheus Authors -Copyright 2019 The Prometheus Authors -Copyright 2020 The Prometheus Authors -Copyright 2021 The Prometheus Authors -Copyright 2022 The Prometheus Authors -Copyright 2023 The Prometheus Authors -Copyright 2014-2015 The Prometheus Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Frootless-containers/rootlesskit v1.1.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -29590,16 +29696,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Frootless-containers/rootlesskit v1.1.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fsafchain/ethtool v0.3.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -29696,16 +29802,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fsafchain/ethtool v0.3.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fsasha-s/go-deadlock v0.3.1 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -29802,16 +29908,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fsasha-s/go-deadlock v0.3.1 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fsoheilhy/cmux v0.1.5 - Apache-2.0 + + +Copyright 2016 The CMux Authors + Apache License Version 2.0, January 2004 @@ -29908,17 +30015,29 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fsoheilhy/cmux v0.1.5 - Apache-2.0 - - -Copyright 2016 The CMux Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fspf13/afero v1.11.0 - Apache-2.0 + + +(c) 2015 The Go Authors +Copyright 2013 tsuru authors +Copyright 2009 The Go Authors +Copyright (c) 2015 The Go Authors +Portions Copyright (c) 2015 The Hugo Authors +Copyright (c) 2014 Steve Francia +Copyright (c) 2015 Steve Francia +Copyright (c) 2016 Steve Francia +Copyright (c) 2018 Steve Francia +Copyright (c) 2022 Steve Francia +Copyright (c) 2021 Vasily Ovchinnikov +Copyright (c) 2015 Jerry Jacobs +Portions Copyright 2016-present Bjorn Erik Pedersen + Apache License Version 2.0, January 2004 @@ -30015,29 +30134,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fspf13/afero v1.11.0 - Apache-2.0 - - -(c) 2015 The Go Authors -Copyright 2013 tsuru authors -Copyright 2009 The Go Authors -Copyright (c) 2015 The Go Authors -Portions Copyright (c) 2015 The Hugo Authors -Copyright (c) 2014 Steve Francia -Copyright (c) 2015 Steve Francia -Copyright (c) 2016 Steve Francia -Copyright (c) 2018 Steve Francia -Copyright (c) 2022 Steve Francia -Copyright (c) 2021 Vasily Ovchinnikov -Copyright (c) 2015 Jerry Jacobs -Portions Copyright 2016-present Bjorn Erik Pedersen - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fspf13/cobra v1.8.0 - Apache-2.0 + + +Copyright 2013-2023 The Cobra Authors + Apache License Version 2.0, January 2004 @@ -30134,17 +30241,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fspf13/cobra v1.8.0 - Apache-2.0 - - -Copyright 2013-2023 The Cobra Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fspiffe%2Fgo-spiffe/v2 v2.1.6 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -30241,16 +30347,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fspiffe%2Fgo-spiffe/v2 v2.1.6 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fspiffe/spire-api-sdk v1.8.5 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -30347,16 +30453,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fspiffe/spire-api-sdk v1.8.5 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fstefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 - Apache-2.0 + + +Copyright IBM Corporation, 2020 +(c) Copyright IBM Corporation, 2020 + Apache License Version 2.0, January 2004 @@ -30453,18 +30561,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fstefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 - Apache-2.0 - - -Copyright IBM Corporation, 2020 -(c) Copyright IBM Corporation, 2020 - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Ftklauser/numcpus v0.7.0 - Apache-2.0 + + +Copyright 2018 Tobias Klauser +Copyright 2021 Tobias Klauser +Copyright 2022 Tobias Klauser +Copyright 2018-2022 Tobias Klauser +Copyright 2019-2020 Tobias Klauser + Apache License Version 2.0, January 2004 @@ -30561,21 +30672,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Ftklauser/numcpus v0.7.0 - Apache-2.0 - - -Copyright 2018 Tobias Klauser -Copyright 2021 Tobias Klauser -Copyright 2022 Tobias Klauser -Copyright 2018-2022 Tobias Klauser -Copyright 2019-2020 Tobias Klauser - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fvishvananda/netlink v1.2.1-beta.2.0.20231127184239-0ced8385386a - Apache-2.0 + + +Copyright 2014 Docker, Inc. +Copyright 2014 Vishvananda Ishaya + Apache License Version 2.0, January 2004 @@ -30672,18 +30780,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fvishvananda/netlink v1.2.1-beta.2.0.20231127184239-0ced8385386a - Apache-2.0 - - -Copyright 2014 Docker, Inc. -Copyright 2014 Vishvananda Ishaya - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fvishvananda/netns v0.0.4 - Apache-2.0 + + +Copyright 2014 Docker, Inc. +Copyright 2014 Vishvananda Ishaya + Apache License Version 2.0, January 2004 @@ -30780,18 +30888,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fvishvananda/netns v0.0.4 - Apache-2.0 - - -Copyright 2014 Docker, Inc. -Copyright 2014 Vishvananda Ishaya - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fxdg-go/pbkdf2 v1.0.0 - Apache-2.0 + + +Copyright 2021 by David A. Golden + Apache License Version 2.0, January 2004 @@ -30888,17 +30995,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fxdg-go/pbkdf2 v1.0.0 - Apache-2.0 - - -Copyright 2021 by David A. Golden - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fxdg-go/scram v1.1.2 - Apache-2.0 + + +Copyright 2018 by David A. Golden + Apache License Version 2.0, January 2004 @@ -30995,17 +31102,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fxdg-go/scram v1.1.2 - Apache-2.0 - - -Copyright 2018 by David A. Golden - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fxdg-go/stringprep v1.0.4 - Apache-2.0 + + +Copyright 2018 by David A. Golden + Apache License Version 2.0, January 2004 @@ -31102,17 +31209,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fxdg-go/stringprep v1.0.4 - Apache-2.0 - - -Copyright 2018 by David A. Golden - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fxeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb - Apache-2.0 + + +Copyright 2015 xeipuuv +Copyright 2015 xeipuuv https://github.com/xeipuuv + Apache License Version 2.0, January 2004 @@ -31209,18 +31317,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fxeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb - Apache-2.0 - - -Copyright 2015 xeipuuv -Copyright 2015 xeipuuv https://github.com/xeipuuv - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fxeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 - Apache-2.0 + + +Copyright 2015 xeipuuv +Copyright 2015 xeipuuv https://github.com/xeipuuv + Apache License Version 2.0, January 2004 @@ -31317,18 +31425,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fxeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 - Apache-2.0 - - -Copyright 2015 xeipuuv -Copyright 2015 xeipuuv https://github.com/xeipuuv - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fxeipuuv/gojsonschema v1.2.0 - Apache-2.0 + + +Copyright 2015 xeipuuv +Copyright 2013 MongoDB, Inc. +Copyright 2015 xeipuuv https://github.com/xeipuuv +Copyright 2017 johandorland https://github.com/johandorland +Copyright 2018 johandorland https://github.com/johandorland + Apache License Version 2.0, January 2004 @@ -31425,21 +31536,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fxeipuuv/gojsonschema v1.2.0 - Apache-2.0 - - -Copyright 2015 xeipuuv -Copyright 2013 MongoDB, Inc. -Copyright 2015 xeipuuv https://github.com/xeipuuv -Copyright 2017 johandorland https://github.com/johandorland -Copyright 2018 johandorland https://github.com/johandorland - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fyashtewari/glob-intersection v0.1.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -31536,16 +31642,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fyashtewari/glob-intersection v0.1.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.etcd.io%2fetcd%2fapi/v3 v3.5.11 - Apache-2.0 + + +Copyright 2015 The etcd +Copyright 2016 The etcd +Copyright 2018 The etcd +Copyright 2020 The etcd + Apache License Version 2.0, January 2004 @@ -31642,20 +31752,27 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.etcd.io%2fetcd%2fapi/v3 v3.5.11 - Apache-2.0 - - -Copyright 2015 The etcd -Copyright 2016 The etcd -Copyright 2018 The etcd -Copyright 2020 The etcd - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.etcd.io%2fetcd%2fclient%2fpkg/v3 v3.5.11 - Apache-2.0 + + +Copyright 2013 The etcd +Copyright 2015 The etcd +Copyright 2016 The etcd +Copyright 2017 The etcd +Copyright 2018 The etcd +Copyright 2019 The etcd +Copyright 2021 The etcd +Copyright 2022 The etcd +Copyright 2023 The etcd +Copyright 2009 The Go Authors +Copyright 2013 The Go Authors + Apache License Version 2.0, January 2004 @@ -31752,27 +31869,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.etcd.io%2fetcd%2fclient%2fpkg/v3 v3.5.11 - Apache-2.0 - - -Copyright 2013 The etcd -Copyright 2015 The etcd -Copyright 2016 The etcd -Copyright 2017 The etcd -Copyright 2018 The etcd -Copyright 2019 The etcd -Copyright 2021 The etcd -Copyright 2022 The etcd -Copyright 2023 The etcd -Copyright 2009 The Go Authors -Copyright 2013 The Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.etcd.io%2Fetcd%2Fclient/v2 v2.305.10 - Apache-2.0 + + +Copyright 2015 The etcd +Copyright 2016 The etcd +Copyright 2017 The etcd +Copyright 2019 The etcd +Copyright 2015 The Go Authors + Apache License Version 2.0, January 2004 @@ -31869,21 +31980,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.etcd.io%2Fetcd%2Fclient/v2 v2.305.10 - Apache-2.0 - - -Copyright 2015 The etcd -Copyright 2016 The etcd -Copyright 2017 The etcd -Copyright 2019 The etcd -Copyright 2015 The Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.etcd.io%2fetcd%2fclient/v3 v3.5.11 - Apache-2.0 + + +Copyright 2015 The etcd +Copyright 2016 The etcd +Copyright 2017 The etcd +Copyright 2018 The etcd +Copyright 2019 The etcd +Copyright 2020 The etcd +Copyright 2021 The etcd + Apache License Version 2.0, January 2004 @@ -31980,23 +32093,26 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.etcd.io%2fetcd%2fclient/v3 v3.5.11 - Apache-2.0 - - -Copyright 2015 The etcd -Copyright 2016 The etcd -Copyright 2017 The etcd -Copyright 2018 The etcd -Copyright 2019 The etcd -Copyright 2020 The etcd -Copyright 2021 The etcd - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.etcd.io%2Fetcd%2Fpkg/v3 v3.5.10 - Apache-2.0 + + +Copyright 2014 The etcd +Copyright 2015 The etcd +Copyright 2016 The etcd +Copyright 2017 The etcd +Copyright 2018 The etcd +Copyright 2019 The etcd +Copyright 2021 The etcd +Copyright 2022 The etcd +Copyright 2009 The Go Authors +Copyright 2015 The Go Authors + Apache License Version 2.0, January 2004 @@ -32093,26 +32209,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.etcd.io%2Fetcd%2Fpkg/v3 v3.5.10 - Apache-2.0 - - -Copyright 2014 The etcd -Copyright 2015 The etcd -Copyright 2016 The etcd -Copyright 2017 The etcd -Copyright 2018 The etcd -Copyright 2019 The etcd -Copyright 2021 The etcd -Copyright 2022 The etcd -Copyright 2009 The Go Authors -Copyright 2015 The Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.etcd.io%2Fetcd%2Fraft/v3 v3.5.10 - Apache-2.0 + + +Copyright 2015 The etcd +Copyright 2016 The etcd +Copyright 2019 The etcd +Copyright 2021 The etcd + Apache License Version 2.0, January 2004 @@ -32209,20 +32319,25 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.etcd.io%2Fetcd%2Fraft/v3 v3.5.10 - Apache-2.0 - - -Copyright 2015 The etcd -Copyright 2016 The etcd -Copyright 2019 The etcd -Copyright 2021 The etcd - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.etcd.io%2Fetcd%2Fserver/v3 v3.5.10 - Apache-2.0 + + +Copyright 2015 The etcd +Copyright 2016 The etcd +Copyright 2017 The etcd +Copyright 2018 The etcd +Copyright 2020 The etcd +Copyright 2021 The etcd +Copyright 2022 The etcd +Copyright 2023 The etcd +Copyright 2013 The Go Authors + Apache License Version 2.0, January 2004 @@ -32319,25 +32434,54 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.etcd.io%2Fetcd%2Fserver/v3 v3.5.10 - Apache-2.0 - - -Copyright 2015 The etcd -Copyright 2016 The etcd -Copyright 2017 The etcd -Copyright 2018 The etcd -Copyright 2020 The etcd -Copyright 2021 The etcd -Copyright 2022 The etcd -Copyright 2023 The etcd -Copyright 2013 The Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.mongodb.org/mongo-driver v1.13.1 - Apache-2.0 + + +Copyright (c) MongoDB +Copyright (c) 2014 youmark +Copyright (c) MongoDB, Inc. +Copyright (c) 2018 Mark Bates +Copyright (c) 2019 Klaus Post +Copyright 2009 The Go Authors +Copyright 2012 The Go Authors +Copyright 2013 Patrick Mezard +Copyright 2014 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2014-2015 Stripe, Inc. +Copyright (c) 2009 The Go Authors +Copyright (c) 2012 The Go Authors +Copyright (c) 2017 The Go Authors +Copyright (c) 2018 The Go Authors +Copyright (c) 2019 The Go Authors +Copyright (c) 2013, Patrick Mezard +Copyright (c) 2016 by MongoDB, Inc +Copyright (c) 2011-2019 Canonical Ltd +Copyright (c) 2006-2010 Kirill Simonov +Copyright (c) 2006-2011 Kirill Simonov +Copyright (c) 2011 The Snappy-Go Authors +Copyright (c) MongoDB, Inc. 2017-present +Copyright (c) MongoDB, Inc. 2018-present +Copyright (c) MongoDB, Inc. 2019-present +Copyright (c) MongoDB, Inc. 2020-present +Copyright (c) MongoDB, Inc. 2021-present +Copyright (c) MongoDB, Inc. 2022-present +Copyright (c) MongoDB, Inc. 2023-present +Copyright (c) 2015, Dave Cheney +Copyright 2015 Amazon.com, Inc. or its affiliates +Copyright (c) 2012-2016 Dave Collins +Copyright 2020 Mat Ryer, Tyler Bunnell and all contributors +Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors +Copyright (c) 2014-2015 Montana Flynn (https://anonfunction.com) +Copyright (c) 2010-2013 - Gustavo Niemeyer +Copyright (c) 2017 marvin + konsorten GmbH (open-source@konsorten.de) + Apache License Version 2.0, January 2004 @@ -32434,54 +32578,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.mongodb.org/mongo-driver v1.13.1 - Apache-2.0 - - -Copyright (c) MongoDB -Copyright (c) 2014 youmark -Copyright (c) MongoDB, Inc. -Copyright (c) 2018 Mark Bates -Copyright (c) 2019 Klaus Post -Copyright 2009 The Go Authors -Copyright 2012 The Go Authors -Copyright 2013 Patrick Mezard -Copyright 2014 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2014-2015 Stripe, Inc. -Copyright (c) 2009 The Go Authors -Copyright (c) 2012 The Go Authors -Copyright (c) 2017 The Go Authors -Copyright (c) 2018 The Go Authors -Copyright (c) 2019 The Go Authors -Copyright (c) 2013, Patrick Mezard -Copyright (c) 2016 by MongoDB, Inc -Copyright (c) 2011-2019 Canonical Ltd -Copyright (c) 2006-2010 Kirill Simonov -Copyright (c) 2006-2011 Kirill Simonov -Copyright (c) 2011 The Snappy-Go Authors -Copyright (c) MongoDB, Inc. 2017-present -Copyright (c) MongoDB, Inc. 2018-present -Copyright (c) MongoDB, Inc. 2019-present -Copyright (c) MongoDB, Inc. 2020-present -Copyright (c) MongoDB, Inc. 2021-present -Copyright (c) MongoDB, Inc. 2022-present -Copyright (c) MongoDB, Inc. 2023-present -Copyright (c) 2015, Dave Cheney -Copyright 2015 Amazon.com, Inc. or its affiliates -Copyright (c) 2012-2016 Dave Collins -Copyright 2020 Mat Ryer, Tyler Bunnell and all contributors -Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors -Copyright (c) 2014-2015 Montana Flynn (https://anonfunction.com) -Copyright (c) 2010-2013 - Gustavo Niemeyer -Copyright (c) 2017 marvin + konsorten GmbH (open-source@konsorten.de) - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io%2Fcontrib%2Finstrumentation%2Fgoogle.golang.org%2Fgrpc/otelgrpc v0.45.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -32578,16 +32684,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io%2Fcontrib%2Finstrumentation%2Fgoogle.golang.org%2Fgrpc/otelgrpc v0.45.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io%2Fcontrib%2Finstrumentation%2Fnet%2Fhttp/otelhttp v0.45.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -32684,16 +32790,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io%2Fcontrib%2Finstrumentation%2Fnet%2Fhttp/otelhttp v0.45.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io%2Fotel%2Fexporters%2Fotlp%2Fotlptrace/otlptracegrpc v1.19.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -32790,16 +32896,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io%2Fotel%2Fexporters%2Fotlp%2Fotlptrace/otlptracegrpc v1.19.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io%2Fotel%2Fexporters%2Fotlp%2Fotlptrace/otlptracehttp v1.19.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -32896,16 +33002,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io%2Fotel%2Fexporters%2Fotlp%2Fotlptrace/otlptracehttp v1.19.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io%2Fotel%2Fexporters%2Fotlp/otlptrace v1.19.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -33002,16 +33108,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io%2Fotel%2Fexporters%2Fotlp/otlptrace v1.19.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io%2Fotel%2Fsdk/metric v1.23.1 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -33108,16 +33214,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io%2Fotel%2Fsdk/metric v1.23.1 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io%2fotel/metric v1.23.1 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -33214,16 +33320,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io%2fotel/metric v1.23.1 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io%2fotel/sdk v1.23.1 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -33320,16 +33426,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io%2fotel/sdk v1.23.1 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io%2fotel/trace v1.23.1 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -33426,16 +33532,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io%2fotel/trace v1.23.1 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io%2fproto/otlp v1.0.0 - Apache-2.0 + + +Copyright 2019, OpenTelemetry +Copyright 2020, OpenTelemetry + Apache License Version 2.0, January 2004 @@ -33532,18 +33640,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io%2fproto/otlp v1.0.0 - Apache-2.0 - - -Copyright 2019, OpenTelemetry -Copyright 2020, OpenTelemetry - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.opentelemetry.io/otel v1.23.1 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -33640,16 +33746,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.opentelemetry.io/otel v1.23.1 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.uber.org/mock v0.3.0 - Apache-2.0 + + +Copyright 2020 Google LLC +Copyright 2022 Google LLC +Copyright 2010 Google Inc. +Copyright 2010 Google LLC. +Copyright 2011 Google Inc. +Copyright 2012 Google Inc. +Copyright 2020 Google Inc. + Apache License Version 2.0, January 2004 @@ -33746,23 +33859,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.uber.org/mock v0.3.0 - Apache-2.0 - - -Copyright 2020 Google LLC -Copyright 2022 Google LLC -Copyright 2010 Google Inc. -Copyright 2010 Google LLC. -Copyright 2011 Google Inc. -Copyright 2012 Google Inc. -Copyright 2020 Google Inc. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gomodules.xyz%2Fjsonpatch/v2 v2.4.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -33859,16 +33965,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gomodules.xyz%2Fjsonpatch/v2 v2.4.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +google.golang.org%2fgenproto%2fgoogleapis/api v0.0.0-20240123012728-ef4313101c80 - Apache-2.0 + + +Copyright 2015 Google LLC +Copyright 2016 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2019 Google LLC. + Apache License Version 2.0, January 2004 @@ -33965,21 +34076,125 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +google.golang.org%2Fgenproto%2Fgoogleapis/rpc v0.0.0-20240123012728-ef4313101c80 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC + +Apache License ---------------------------------------------------------- +Version 2.0, January 2004 + +http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. ---------------------------------------------------------- + -google.golang.org%2fgenproto%2fgoogleapis/api v0.0.0-20240123012728-ef4313101c80 - Apache-2.0 + "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + + + "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + + + + "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + + + + "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + + + + "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + + -Copyright 2015 Google LLC -Copyright 2016 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2019 Google LLC. + "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + + + + "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + + + + "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + + + + "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + + + + "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + + You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); + +you may not use this file except in compliance with the License. + +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software + +distributed under the License is distributed on an "AS IS" BASIS, + +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + +See the License for the specific language governing permissions and +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +google.golang.org%2Fgrpc%2Fcmd/protoc-gen-go-grpc v1.3.0 - Apache-2.0 + + +Copyright 2020 gRPC + Apache License Version 2.0, January 2004 @@ -34076,18 +34291,25 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -google.golang.org%2Fgenproto%2Fgoogleapis/rpc v0.0.0-20240123012728-ef4313101c80 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +google.golang.org/appengine v1.6.8 - Apache-2.0 + + +Copyright 2011 Google Inc. +Copyright 2012 Google Inc. +Copyright 2013 Google Inc. +Copyright 2014 Google Inc. +Copyright 2015 Google Inc. +Copyright 2016 Google Inc. +Copyright 2018 Google LLC. +Copyright 2019 Google Inc. +Copyright 2011 The Go Authors + Apache License Version 2.0, January 2004 @@ -34184,17 +34406,29 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -google.golang.org%2Fgrpc%2Fcmd/protoc-gen-go-grpc v1.3.0 - Apache-2.0 - - -Copyright 2020 gRPC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +google.golang.org/genproto v0.0.0-20240123012728-ef4313101c80 - Apache-2.0 + + +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright 2016 Google Inc. +Copyright 2017 Google Inc. +Copyright 2018 Google Inc. +Copyright 2019 Google LLC. +Copyright 2020 Google LLC. +Copyright 2021 Google LLC. +Copyright (c) 2015, Google Inc. +Copyright 2018 The Grafeas Authors +Copyright 2019 The Grafeas Authors +Copyright 2021 The Grafeas Authors +Copyright 2023 The Grafeas Authors + Apache License Version 2.0, January 2004 @@ -34291,25 +34525,32 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -google.golang.org/appengine v1.6.8 - Apache-2.0 - - -Copyright 2011 Google Inc. -Copyright 2012 Google Inc. -Copyright 2013 Google Inc. -Copyright 2014 Google Inc. -Copyright 2015 Google Inc. -Copyright 2016 Google Inc. -Copyright 2018 Google LLC. -Copyright 2019 Google Inc. -Copyright 2011 The Go Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +google.golang.org/grpc v1.62.0 - Apache-2.0 + + +Copyright 2014 gRPC +Copyright 2015 gRPC +Copyright 2016 gRPC +Copyright 2017 gRPC +Copyright 2018 gRPC +Copyright 2019 gRPC +Copyright 2020 gRPC +Copyright 2021 gRPC +Copyright 2022 gRPC +Copyright 2023 gRPC +Copyright 2024 gRPC +Copyright 2015 The gRPC +Copyright 2016 The gRPC +Copyright 2018 The gRPC +Copyright 2020 The gRPC +Copyright 2015-2016 gRPC + Apache License Version 2.0, January 2004 @@ -34406,29 +34647,24 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -google.golang.org/genproto v0.0.0-20240123012728-ef4313101c80 - Apache-2.0 - - -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright 2016 Google Inc. -Copyright 2017 Google Inc. -Copyright 2018 Google Inc. -Copyright 2019 Google LLC. -Copyright 2020 Google LLC. -Copyright 2021 Google LLC. -Copyright (c) 2015, Google Inc. -Copyright 2018 The Grafeas Authors -Copyright 2019 The Grafeas Authors -Copyright 2021 The Grafeas Authors -Copyright 2023 The Grafeas Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in%2Fsquare/go-jose.v2 v2.6.0 - Apache-2.0 + + +Copyright 2014 Square Inc. +Copyright 2017 Square Inc. +Copyright 2018 Square Inc. +Copyright 2016 Square, Inc. +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright (c) 2012 The Go Authors +Copyright 2016 Zbigniew Mandziejewicz + Apache License Version 2.0, January 2004 @@ -34525,32 +34761,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -google.golang.org/grpc v1.62.0 - Apache-2.0 - - -Copyright 2014 gRPC -Copyright 2015 gRPC -Copyright 2016 gRPC -Copyright 2017 gRPC -Copyright 2018 gRPC -Copyright 2019 gRPC -Copyright 2020 gRPC -Copyright 2021 gRPC -Copyright 2022 gRPC -Copyright 2023 gRPC -Copyright 2024 gRPC -Copyright 2015 The gRPC -Copyright 2016 The gRPC -Copyright 2018 The gRPC -Copyright 2020 The gRPC -Copyright 2015-2016 gRPC - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in/ini.v1 v1.67.0 - Apache-2.0 + + +Copyright 2014 Unknwon +Copyright 2015 Unknwon +Copyright 2016 Unknwon +Copyright 2017 Unknwon +Copyright 2019 Unknwon + Apache License Version 2.0, January 2004 @@ -34647,24 +34872,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in%2Fsquare/go-jose.v2 v2.6.0 - Apache-2.0 - - -Copyright 2014 Square Inc. -Copyright 2017 Square Inc. -Copyright 2018 Square Inc. -Copyright 2016 Square, Inc. -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright (c) 2012 The Go Authors -Copyright 2016 Zbigniew Mandziejewicz - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in/yaml.v2 v2.4.0 - Apache-2.0 + + +Copyright (c) 2006 Kirill Simonov +Copyright 2011-2016 Canonical Ltd. + Apache License Version 2.0, January 2004 @@ -34761,21 +34980,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in/ini.v1 v1.67.0 - Apache-2.0 - - -Copyright 2014 Unknwon -Copyright 2015 Unknwon -Copyright 2016 Unknwon -Copyright 2017 Unknwon -Copyright 2019 Unknwon - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in/yaml.v3 v3.0.1 - Apache-2.0 + + +Copyright 2011-2016 Canonical Ltd. +Copyright (c) 2011-2019 Canonical Ltd +Copyright (c) 2006-2010 Kirill Simonov +Copyright (c) 2006-2011 Kirill Simonov + Apache License Version 2.0, January 2004 @@ -34872,18 +35090,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in/yaml.v2 v2.4.0 - Apache-2.0 - - -Copyright (c) 2006 Kirill Simonov -Copyright 2011-2016 Canonical Ltd. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gotest.tools/v3 v3.5.1 - Apache-2.0 + + +Copyright 2018 gotest.tools +Copyright (c) 2013, Patrick Mezard + Apache License Version 2.0, January 2004 @@ -34980,20 +35198,236 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +human-signals 2.1.0 - Apache-2.0 +https://git.io/JeluP + +Copyright 2019 ehmicky + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. ---------------------------------------------------------- + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. ---------------------------------------------------------- + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. -gopkg.in/yaml.v3 v3.0.1 - Apache-2.0 + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. -Copyright 2011-2016 Canonical Ltd. -Copyright (c) 2011-2019 Canonical Ltd -Copyright (c) 2006-2010 Kirill Simonov -Copyright (c) 2006-2011 Kirill Simonov + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2019 ehmicky + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +k8s.io%2fklog/v2 v2.110.1 - Apache-2.0 + + +Copyright 2013 Google Inc. +Copyright 2020 Intel Coporation +Copyright 2014 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors. +Copyright 2021 The Kubernetes Authors. + Apache License Version 2.0, January 2004 @@ -35090,18 +35524,25 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gotest.tools/v3 v3.5.1 - Apache-2.0 - - -Copyright 2018 gotest.tools -Copyright (c) 2013, Patrick Mezard - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +k8s.io/api v0.29.3 - Apache-2.0 + + +Copyright 2015 The Kubernetes Authors +Copyright 2016 The Kubernetes Authors +Copyright 2017 The Kubernetes Authors +Copyright 2018 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors +Copyright 2021 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -35198,236 +35639,146 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +k8s.io/apimachinery v0.29.3 - Apache-2.0 + + +Copyright 2009 The Go Authors +Copyright 2013 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright 2014 The Kubernetes Authors +Copyright 2015 The Kubernetes Authors +Copyright 2016 The Kubernetes Authors +Copyright 2017 The Kubernetes Authors +Copyright 2018 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors +Copyright 2021 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors + +Apache License ---------------------------------------------------------- +Version 2.0, January 2004 ---------------------------------------------------------- +http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -human-signals 2.1.0 - Apache-2.0 -https://git.io/JeluP + 1. Definitions. -Copyright 2019 ehmicky + - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + - 1. Definitions. + "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. + - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. + "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. + - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. + "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. + - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. + "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). + - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. + "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." + - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. + "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. + - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. + "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: + - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and + "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and + - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and + "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. + 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. + 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. + 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. + (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. + (b) You must cause any modified files to carry prominent notices stating that You changed the files; and - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. + (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. + (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. - END OF TERMS AND CONDITIONS + You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - APPENDIX: How to apply the Apache License to your work. + 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. + 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - Copyright 2019 ehmicky + 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at + 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - http://www.apache.org/licenses/LICENSE-2.0 + 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); + +you may not use this file except in compliance with the License. +You may obtain a copy of the License at ---------------------------------------------------------- +http://www.apache.org/licenses/LICENSE-2.0 ---------------------------------------------------------- +Unless required by applicable law or agreed to in writing, software -k8s.io%2fklog/v2 v2.110.1 - Apache-2.0 +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -Copyright 2013 Google Inc. -Copyright 2020 Intel Coporation -Copyright 2014 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors. -Copyright 2021 The Kubernetes Authors. +See the License for the specific language governing permissions and +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +k8s.io/client-go v0.29.3 - Apache-2.0 + + +Copyright (c) 2009 The Go Authors +Copyright 2014 The Kubernetes Authors +Copyright 2015 The Kubernetes Authors +Copyright 2016 The Kubernetes Authors +Copyright 2017 The Kubernetes Authors +Copyright 2018 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors +Copyright 2021 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -35524,25 +35875,25 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -k8s.io/api v0.29.3 - Apache-2.0 - - -Copyright 2015 The Kubernetes Authors -Copyright 2016 The Kubernetes Authors -Copyright 2017 The Kubernetes Authors -Copyright 2018 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors -Copyright 2021 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +k8s.io/code-generator v0.29.3 - Apache-2.0 + + +Copyright (c) 2009 The Go Authors +Copyright 2015 The Kubernetes Authors +Copyright 2016 The Kubernetes Authors +Copyright 2017 The Kubernetes Authors +Copyright 2018 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors +Copyright 2021 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -35639,29 +35990,22 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -k8s.io/apimachinery v0.29.3 - Apache-2.0 - - -Copyright 2009 The Go Authors -Copyright 2013 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright 2014 The Kubernetes Authors -Copyright 2015 The Kubernetes Authors -Copyright 2016 The Kubernetes Authors -Copyright 2017 The Kubernetes Authors -Copyright 2018 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors -Copyright 2021 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +k8s.io/gengo v0.0.0-20230829151522-9cce18d56c01 - Apache-2.0 + + +Copyright 2014 The Kubernetes Authors +Copyright 2015 The Kubernetes Authors +Copyright 2016 The Kubernetes Authors +Copyright 2017 The Kubernetes Authors +Copyright 2018 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -35758,27 +36102,32 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -k8s.io/client-go v0.29.3 - Apache-2.0 - - -Copyright (c) 2009 The Go Authors -Copyright 2014 The Kubernetes Authors -Copyright 2015 The Kubernetes Authors -Copyright 2016 The Kubernetes Authors -Copyright 2017 The Kubernetes Authors -Copyright 2018 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors -Copyright 2021 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 - Apache-2.0 + + +Copyright 2015 go-swagger +Copyright 2017 go-swagger +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright 2022 The Go Authors +Copyright (c) 2020 The Go Authors +Copyright 2016 The Kubernetes Authors +Copyright 2017 The Kubernetes Authors +Copyright 2018 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors +Copyright 2021 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors +Copyright (c) MongoDB, Inc. 2017-present +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -35875,25 +36224,31 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -k8s.io/code-generator v0.29.3 - Apache-2.0 - - -Copyright (c) 2009 The Go Authors -Copyright 2015 The Kubernetes Authors -Copyright 2016 The Kubernetes Authors -Copyright 2017 The Kubernetes Authors -Copyright 2018 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors -Copyright 2021 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +k8s.io/utils v0.0.0-20231127182322-b307cd553661 - Apache-2.0 + + +Copyright 2013 Google Inc. +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright (c) 2012 The Go Authors +Copyright 2014 The Kubernetes Authors +Copyright 2015 The Kubernetes Authors +Copyright 2016 The Kubernetes Authors +Copyright 2017 The Kubernetes Authors +Copyright 2018 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors +Copyright 2021 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -35990,22 +36345,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -k8s.io/gengo v0.0.0-20230829151522-9cce18d56c01 - Apache-2.0 - - -Copyright 2014 The Kubernetes Authors -Copyright 2015 The Kubernetes Authors -Copyright 2016 The Kubernetes Authors -Copyright 2017 The Kubernetes Authors -Copyright 2018 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +oras.land%2Foras-go/v2 v2.3.1 - Apache-2.0 + + +Copyright 2021 ORAS Authors + Apache License Version 2.0, January 2004 @@ -36102,368 +36452,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 - Apache-2.0 - - -Copyright 2015 go-swagger -Copyright 2017 go-swagger -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright 2022 The Go Authors -Copyright (c) 2020 The Go Authors -Copyright 2016 The Kubernetes Authors -Copyright 2017 The Kubernetes Authors -Copyright 2018 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors -Copyright 2021 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors -Copyright (c) MongoDB, Inc. 2017-present -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - -Apache License - -Version 2.0, January 2004 - -http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - - - "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - - - - "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - - - - "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - - - - "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. - - - - "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - - - - "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - - - - "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - - - - "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - - - - "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." - - - - "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: - - (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. - - You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - -To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); - -you may not use this file except in compliance with the License. - -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software - -distributed under the License is distributed on an "AS IS" BASIS, - -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - -See the License for the specific language governing permissions and - -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -k8s.io/utils v0.0.0-20231127182322-b307cd553661 - Apache-2.0 - - -Copyright 2013 Google Inc. -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright (c) 2012 The Go Authors -Copyright 2014 The Kubernetes Authors -Copyright 2015 The Kubernetes Authors -Copyright 2016 The Kubernetes Authors -Copyright 2017 The Kubernetes Authors -Copyright 2018 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors -Copyright 2021 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors - -Apache License - -Version 2.0, January 2004 - -http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - - - "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - - - - "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - - - - "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - - - - "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. - - - - "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - - - - "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - - - - "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - - - - "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - - - - "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." - - - - "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: - - (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. - - You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - -To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); - -you may not use this file except in compliance with the License. - -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software - -distributed under the License is distributed on an "AS IS" BASIS, - -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - -See the License for the specific language governing permissions and - -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -oras.land%2Foras-go/v2 v2.3.1 - Apache-2.0 - - -Copyright 2021 ORAS Authors - -Apache License - -Version 2.0, January 2004 - -http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - - - "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - - - - "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - - - - "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - - - - "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. - - - - "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - - - - "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - - - - "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - - - - "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - - - - "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." - - - - "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: - - (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. - - You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - -To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); - -you may not use this file except in compliance with the License. - -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software - -distributed under the License is distributed on an "AS IS" BASIS, - -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - -See the License for the specific language governing permissions and - -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-helmet-async 1.3.0 - Apache-2.0 -https://github.com/staylor/react-helmet-async#readme - -Copyright (c) 2018 Scott Taylor -Copyright 2018 The New York Times Company - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-helmet-async 1.3.0 - Apache-2.0 +https://github.com/staylor/react-helmet-async#readme + +Copyright (c) 2018 Scott Taylor +Copyright 2018 The New York Times Company + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -36665,18 +36665,18 @@ Copyright 2018 The New York Times Company WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io%2Fapiserver-network-proxy/konnectivity-client v0.28.0 - Apache-2.0 - - -Copyright 2019 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io%2Fapiserver-network-proxy/konnectivity-client v0.28.0 - Apache-2.0 + + +Copyright 2019 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -36773,20 +36773,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io%2Fkustomize%2Fkustomize/v5 v5.0.4-0.20230601165947-6ce0bf390ce3 - Apache-2.0 - - -Copyright 2019 The Kubernetes Authors. -Copyright 2020 The Kubernetes Authors. -Copyright 2021 The Kubernetes Authors. -Copyright 2022 The Kubernetes Authors. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io%2Fkustomize%2Fkustomize/v5 v5.0.4-0.20230601165947-6ce0bf390ce3 - Apache-2.0 + + +Copyright 2019 The Kubernetes Authors. +Copyright 2020 The Kubernetes Authors. +Copyright 2021 The Kubernetes Authors. +Copyright 2022 The Kubernetes Authors. + Apache License Version 2.0, January 2004 @@ -36883,16 +36883,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io%2fkustomize/api v0.14.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io%2fkustomize/api v0.14.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -36989,29 +36989,29 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io%2fkustomize/kyaml v0.14.3 - Apache-2.0 - - -Copyright (c) 2018 QRI, Inc. -Copyright 2011-2016 Canonical Ltd. -Copyright (c) 2011-2019 Canonical Ltd -Copyright 2014 The Kubernetes Authors -Copyright 2015 The Kubernetes Authors -Copyright 2016 The Kubernetes Authors -Copyright (c) 2006-2010 Kirill Simonov -Copyright (c) 2006-2011 Kirill Simonov -Copyright 2018 The Kubernetes Authors. -Copyright 2019 The Kubernetes Authors. -Copyright 2020 The Kubernetes Authors. -Copyright 2021 The Kubernetes Authors. -Copyright 2022 The Kubernetes Authors. - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io%2fkustomize/kyaml v0.14.3 - Apache-2.0 + + +Copyright (c) 2018 QRI, Inc. +Copyright 2011-2016 Canonical Ltd. +Copyright (c) 2011-2019 Canonical Ltd +Copyright 2014 The Kubernetes Authors +Copyright 2015 The Kubernetes Authors +Copyright 2016 The Kubernetes Authors +Copyright (c) 2006-2010 Kirill Simonov +Copyright (c) 2006-2011 Kirill Simonov +Copyright 2018 The Kubernetes Authors. +Copyright 2019 The Kubernetes Authors. +Copyright 2020 The Kubernetes Authors. +Copyright 2021 The Kubernetes Authors. +Copyright 2022 The Kubernetes Authors. + Apache License Version 2.0, January 2004 @@ -37108,20 +37108,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io%2fstructured-merge-diff/v4 v4.4.1 - Apache-2.0 - - -Copyright 2018 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io%2fstructured-merge-diff/v4 v4.4.1 - Apache-2.0 + + +Copyright 2018 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -37218,26 +37218,26 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io/controller-runtime v0.16.3 - Apache-2.0 - - -Copyright 2014 The Kubernetes Authors -Copyright 2016 The Kubernetes Authors -Copyright 2017 The Kubernetes Authors -Copyright 2018 The Kubernetes Authors -Copyright 2018 The Kubernetes authors -Copyright 2019 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors -Copyright 2021 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io/controller-runtime v0.16.3 - Apache-2.0 + + +Copyright 2014 The Kubernetes Authors +Copyright 2016 The Kubernetes Authors +Copyright 2017 The Kubernetes Authors +Copyright 2018 The Kubernetes Authors +Copyright 2018 The Kubernetes authors +Copyright 2019 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors +Copyright 2021 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -37334,20 +37334,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io/controller-tools v0.13.0 - Apache-2.0 - - -Copyright 2018 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors -Copyright 2019-2022 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io/controller-tools v0.13.0 - Apache-2.0 + + +Copyright 2018 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors +Copyright 2019-2022 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -37444,25 +37444,25 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd - Apache-2.0 - - -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2013 The Go Authors -Copyright 2016 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2021 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright 2021 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd - Apache-2.0 + + +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2013 The Go Authors +Copyright 2016 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2021 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright 2021 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -37559,21 +37559,21 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io/release-utils v0.7.7 - Apache-2.0 - - -Copyright 2015 The Kubernetes Authors -Copyright 2019 The Kubernetes Authors -Copyright 2020 The Kubernetes Authors -Copyright 2021 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io/release-utils v0.7.7 - Apache-2.0 + + +Copyright 2015 The Kubernetes Authors +Copyright 2019 The Kubernetes Authors +Copyright 2020 The Kubernetes Authors +Copyright 2021 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -37670,20 +37670,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io/security-profiles-operator v0.8.2 - Apache-2.0 - - -Copyright 2020 The Kubernetes Authors -Copyright 2021 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io/security-profiles-operator v0.8.2 - Apache-2.0 + + +Copyright 2020 The Kubernetes Authors +Copyright 2021 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors + Apache License Version 2.0, January 2004 @@ -37780,16 +37780,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -tags.cncf.io%2Fcontainer-device-interface/specs-go v0.6.0 - Apache-2.0 - - - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +tags.cncf.io%2Fcontainer-device-interface/specs-go v0.6.0 - Apache-2.0 + + + Apache License Version 2.0, January 2004 @@ -37886,23 +37886,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -tags.cncf.io/container-device-interface v0.6.2 - Apache-2.0 - - -IsLetter (c) IsDigit (c) -Copyright (c) The CDI Authors -Copyright (c) 2021 The CDI Authors -Copyright (c) 2022 The CDI Authors -Copyright 2014 The Kubernetes Authors -Copyright (c) 2021-2022 The CDI Authors -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +tags.cncf.io/container-device-interface v0.6.2 - Apache-2.0 + + +IsLetter (c) IsDigit (c) +Copyright (c) The CDI Authors +Copyright (c) 2021 The CDI Authors +Copyright (c) 2022 The CDI Authors +Copyright 2014 The Kubernetes Authors +Copyright (c) 2021-2022 The CDI Authors +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + Apache License Version 2.0, January 2004 @@ -37999,17 +37999,17 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - ---------------------------------------------------------- - ---------------------------------------------------------- - -websocket-driver 0.7.4 - Apache-2.0 -https://github.com/faye/websocket-driver-node - -Copyright 2010-2020 James Coglan - +limitations under the License. + +--------------------------------------------------------- + +--------------------------------------------------------- + +websocket-driver 0.7.4 - Apache-2.0 +https://github.com/faye/websocket-driver-node + +Copyright 2010-2020 James Coglan + Copyright 2010-2020 James Coglan Licensed under the Apache License, Version 2.0 (the "License"); you may not use @@ -38022,17 +38022,17 @@ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -websocket-extensions 0.1.4 - Apache-2.0 -http://github.com/faye/websocket-extensions-node - -Copyright 2014-2020 James Coglan - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +websocket-extensions 0.1.4 - Apache-2.0 +http://github.com/faye/websocket-extensions-node + +Copyright 2014-2020 James Coglan + Copyright 2014-2020 James Coglan Licensed under the Apache License, Version 2.0 (the "License"); you may not use @@ -38045,298 +38045,298 @@ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle/cel-go v0.17.7 - Apache-2.0 AND BSD-3-Clause - - -Copyright 2018 Google LLC -Copyright 2019 Google LLC -Copyright 2020 Google LLC -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2023 Google LLC -Copyright (c) 2018 The Go Authors - -Apache-2.0 AND BSD-3-Clause - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fishidawataru/sctp v0.0.0-20210707070123-9a39160e9062 - Apache-2.0 AND BSD-3-Clause - - -Copyright 2019 Wataru Ishida -Copyright 2009 The Go Authors -Copyright (c) 2009 The Go Authors - -Apache-2.0 AND BSD-3-Clause - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmoby%2Fsys/symlink v0.2.0 - Apache-2.0 AND BSD-3-Clause - - -Copyright 2012 The Go Authors -Copyright 2014-2018 Docker, Inc. -Copyright (c) 2014-2018 The Docker & Go Authors - -Apache-2.0 AND BSD-3-Clause - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fklauspost/compress v1.17.3 - Apache-2.0 AND BSD-3-Clause AND MIT - - -(c) 2007 Credit -Klaus Post (c) 2015 -(c) Credit Agricole 2011 -Copyright 2018 Klaus Post -Copyright 2023 Google LLC -Copyright 2020+ Klaus Post -Copyright 2023+ Klaus Post -Copyright (c) 2023'. Search -Copyright (c) 2016 Evan Huus -Copyright 2016 The filepathx -Copyright (c) 2015 Klaus Post -Copyright (c) 2019 Klaus Post -Copyright (c) 2021 Klaus Post -Copyright (c) 2022 Klaus Post -Copyright (c) 2023 Klaus Post -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2014 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2019 The Go Authors -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright (c) 2016 Caleb Spare -Copyright (c) 2019+ Klaus Post -Copyright (c) 2022+ Klaus Post -Copyright (c) 2023+ Klaus Post -Copyright (c) 2013, Yann Collet -Copyright (c) 2015, Pierre Curto -Copyright (c) 2012 The Go Authors -Copyright 2011 The Snappy-Go Authors -Copyright 2016 The Snappy-Go Authors -Copyright (c) 2011 The Snappy-Go Authors -Copyright 2016-2017 The New York Times Company -Copyright 2022 d MakeDict(rawDict, byte(searchFor)) -Copyright (c) 2023 b d.Bytes will provide a dictionary -Copyright (c) 2023 b dict.Bytes will provide a dictionary - -Apache-2.0 AND BSD-3-Clause AND MIT - ---------------------------------------------------------- - ---------------------------------------------------------- - -sigs.k8s.io/yaml v1.4.0 - Apache-2.0 AND BSD-3-Clause AND MIT - - -Copyright (c) 2014 Sam Ghods -Copyright 2013 The Go Authors -Copyright (c) 2006 Kirill Simonov -Copyright (c) 2012 The Go Authors -Copyright 2011-2016 Canonical Ltd. -Copyright (c) 2011-2019 Canonical Ltd -Copyright 2021 The Kubernetes Authors -Copyright 2022 The Kubernetes Authors -Copyright 2023 The Kubernetes Authors -Copyright (c) 2006-2010 Kirill Simonov -Copyright (c) 2006-2011 Kirill Simonov - -Apache-2.0 AND BSD-3-Clause AND MIT - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgodror/godror v0.24.2 - Apache-2.0 AND BSD-3-Clause AND MIT AND UPL-1.0 - - -Copyright (c) 2015 go-logfmt -Copyright 2016 Tamas Gulacsi -Copyright 2019 Tamas Gulacsi -Copyright 2020 Tamas Gulacsi -Copyright (c) 2009 The Go Authors -Copyright (c) 2017 The Go Authors -Copyright (c) 2019 The Go Authors -Copyright 2020 The Godror Authors -Copyright 2021 The Godror Authors -Copyright 2017, 2020 Tamas Gulacsi -Copyright 2017, 2020 The Godror Authors -Copyright 2018, 2020 The Godror Authors -Copyright 2019, 2020 The Godror Authors -Copyright (c) 2017, Oracle and/or its affiliates -Copyright (c) 2018, Oracle and/or its affiliates -Copyright (c) 2019, Oracle and/or its affiliates -Copyright (c) 2020, Oracle and/or its affiliates -Copyright (c) 2016, 2018 Oracle and/or its affiliates -Copyright (c) 2016, 2017, Oracle and/or its affiliates -Copyright (c) 2016, 2018, Oracle and/or its affiliates -Copyright (c) 2016, 2019, Oracle and/or its affiliates -Copyright (c) 2016, 2020, Oracle and/or its affiliates -Copyright (c) 2017, 2020, Oracle and/or its affiliates -Copyright (c) 2018, 2020, Oracle and/or its affiliates - -Apache-2.0 AND BSD-3-Clause AND MIT AND UPL-1.0 - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdocker/go-metrics v0.0.1 - Apache-2.0 AND CC-BY-SA-4.0 - - -Copyright (c) 2016 Docker, Inc. -Copyright 2012-2015 Docker, Inc. -Copyright 2013-2016 Docker, Inc. -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - -Apache-2.0 AND CC-BY-SA-4.0 - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fopencontainers/go-digest v1.0.0 - Apache-2.0 AND CC-BY-SA-4.0 - - -Copyright 2016 Docker, Inc. -Copyright 2017 Docker, Inc. -Copyright (c) 2016 Docker, Inc. -Copyright 2019, 2020 OCI Contributors -Copyright 2020, 2020 OCI Contributors -Copyright (c) 2019, 2020 OCI Contributors -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - -Apache-2.0 AND CC-BY-SA-4.0 - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Foneofone/xxhash v1.2.8 - Apache-2.0 AND ImageMagick - - -(c) 2012-2014, Yann Collet -Copyright (https://github.com/Cyan4973/xxHash/blob/master/LICENSE) - -Apache-2.0 AND ImageMagick - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fbgentry/speakeasy v0.1.0 - Apache-2.0 AND MIT - - -Copyright (c) 2017 Blake Gentry -Copyright 2013 the CloudFoundry Authors - -Apache-2.0 AND MIT - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fpelletier/go-toml v1.9.5 - Apache-2.0 AND MIT - - -Copyright 2016 Google LLC -Copyright (c) 2013 - 2021 Thomas Pelletier, Eric Anderton - -Apache-2.0 AND MIT - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fsergi/go-diff v1.1.0 - Apache-2.0 AND MIT - - -Copyright (c) 2012-2016 The go-diff Authors -Copyright (c) 2012-2016 The go-diff authors -Copyright (c) 2006 Google Inc. http://code.google.com/p/google-diff-match-patch -Copyright (c) 2006 Google Inc. - -Apache-2.0 AND MIT - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fcontainernetworking/plugins v1.4.0 - Apache-2.0 AND NOASSERTION - - -Copyright 2014 CNI authors -Copyright 2015 CNI authors -Copyright 2016 CNI authors -Copyright 2017 CNI authors -Copyright 2018 CNI authors -Copyright 2019 CNI authors -Copyright 2020 CNI authors -Copyright 2021 CNI authors -Copyright 2022 CNI authors -Copyright 2022 Arista Networks -Copyright 2015-2017 CNI authors -Copyright 2015-2018 CNI authors -Copyright 2016-2018 CNI authors -Copyright 2017-2018 CNI authors -Copyright 2017-2020 CNI authors -Copyright (c) 2004, 2006 The Linux Foundation and its contributors - -Apache-2.0 AND NOASSERTION - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.universe.tf/metallb v0.11.0 - Apache-2.0 AND NOASSERTION - - -(c) Zeno Rocha -Copyright (c) 2014 Grav -Copyright Dave Gandy 2016 -Copyright 2017 Google Inc. -Copyright (c) 2016 MATHIEU CORNIC -Copyright (c) 2017 Valere JEANTET -Copyright 2021 The MetalLB Authors -Copyright (c) 2016 Oliver Nightingale -Copyright 2016 The Kubernetes Authors -Copyright (c) The MetalLB Contributors -(c) OpenJS Foundation and other contributors -Copyright (c) 2010-2011 by tyPoland Lukasz Dziedzic -Copyright 2015, Noel Raoul Bossart (http://www.noelboss.com) -Copyright (c) 2021 The Linux Foundation (r). The Linux Foundation -Copyright (c) 2004, 2006 The Linux Foundation and its contributors -(c) 2010-2011 by tyPoland Lukasz Dziedzic (http://www.typoland.com/) -Copyright (c) 2014 Simon Steinberger / Pixabay GitHub https://github.com/Pixabay/JavaScript-autoComplete - -Apache-2.0 AND NOASSERTION - ---------------------------------------------------------- - ---------------------------------------------------------- - -cheerio-select 2.1.0 - BSD-2-Clause -https://github.com/cheeriojs/cheerio-select#readme - -Copyright (c) Felix Bohm - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle/cel-go v0.17.7 - Apache-2.0 AND BSD-3-Clause + + +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Copyright (c) 2018 The Go Authors + +Apache-2.0 AND BSD-3-Clause + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fishidawataru/sctp v0.0.0-20210707070123-9a39160e9062 - Apache-2.0 AND BSD-3-Clause + + +Copyright 2019 Wataru Ishida +Copyright 2009 The Go Authors +Copyright (c) 2009 The Go Authors + +Apache-2.0 AND BSD-3-Clause + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmoby%2Fsys/symlink v0.2.0 - Apache-2.0 AND BSD-3-Clause + + +Copyright 2012 The Go Authors +Copyright 2014-2018 Docker, Inc. +Copyright (c) 2014-2018 The Docker & Go Authors + +Apache-2.0 AND BSD-3-Clause + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fklauspost/compress v1.17.3 - Apache-2.0 AND BSD-3-Clause AND MIT + + +(c) 2007 Credit +Klaus Post (c) 2015 +(c) Credit Agricole 2011 +Copyright 2018 Klaus Post +Copyright 2023 Google LLC +Copyright 2020+ Klaus Post +Copyright 2023+ Klaus Post +Copyright (c) 2023'. Search +Copyright (c) 2016 Evan Huus +Copyright 2016 The filepathx +Copyright (c) 2015 Klaus Post +Copyright (c) 2019 Klaus Post +Copyright (c) 2021 Klaus Post +Copyright (c) 2022 Klaus Post +Copyright (c) 2023 Klaus Post +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2014 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2019 The Go Authors +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright (c) 2016 Caleb Spare +Copyright (c) 2019+ Klaus Post +Copyright (c) 2022+ Klaus Post +Copyright (c) 2023+ Klaus Post +Copyright (c) 2013, Yann Collet +Copyright (c) 2015, Pierre Curto +Copyright (c) 2012 The Go Authors +Copyright 2011 The Snappy-Go Authors +Copyright 2016 The Snappy-Go Authors +Copyright (c) 2011 The Snappy-Go Authors +Copyright 2016-2017 The New York Times Company +Copyright 2022 d MakeDict(rawDict, byte(searchFor)) +Copyright (c) 2023 b d.Bytes will provide a dictionary +Copyright (c) 2023 b dict.Bytes will provide a dictionary + +Apache-2.0 AND BSD-3-Clause AND MIT + +--------------------------------------------------------- + +--------------------------------------------------------- + +sigs.k8s.io/yaml v1.4.0 - Apache-2.0 AND BSD-3-Clause AND MIT + + +Copyright (c) 2014 Sam Ghods +Copyright 2013 The Go Authors +Copyright (c) 2006 Kirill Simonov +Copyright (c) 2012 The Go Authors +Copyright 2011-2016 Canonical Ltd. +Copyright (c) 2011-2019 Canonical Ltd +Copyright 2021 The Kubernetes Authors +Copyright 2022 The Kubernetes Authors +Copyright 2023 The Kubernetes Authors +Copyright (c) 2006-2010 Kirill Simonov +Copyright (c) 2006-2011 Kirill Simonov + +Apache-2.0 AND BSD-3-Clause AND MIT + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgodror/godror v0.24.2 - Apache-2.0 AND BSD-3-Clause AND MIT AND UPL-1.0 + + +Copyright (c) 2015 go-logfmt +Copyright 2016 Tamas Gulacsi +Copyright 2019 Tamas Gulacsi +Copyright 2020 Tamas Gulacsi +Copyright (c) 2009 The Go Authors +Copyright (c) 2017 The Go Authors +Copyright (c) 2019 The Go Authors +Copyright 2020 The Godror Authors +Copyright 2021 The Godror Authors +Copyright 2017, 2020 Tamas Gulacsi +Copyright 2017, 2020 The Godror Authors +Copyright 2018, 2020 The Godror Authors +Copyright 2019, 2020 The Godror Authors +Copyright (c) 2017, Oracle and/or its affiliates +Copyright (c) 2018, Oracle and/or its affiliates +Copyright (c) 2019, Oracle and/or its affiliates +Copyright (c) 2020, Oracle and/or its affiliates +Copyright (c) 2016, 2018 Oracle and/or its affiliates +Copyright (c) 2016, 2017, Oracle and/or its affiliates +Copyright (c) 2016, 2018, Oracle and/or its affiliates +Copyright (c) 2016, 2019, Oracle and/or its affiliates +Copyright (c) 2016, 2020, Oracle and/or its affiliates +Copyright (c) 2017, 2020, Oracle and/or its affiliates +Copyright (c) 2018, 2020, Oracle and/or its affiliates + +Apache-2.0 AND BSD-3-Clause AND MIT AND UPL-1.0 + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdocker/go-metrics v0.0.1 - Apache-2.0 AND CC-BY-SA-4.0 + + +Copyright (c) 2016 Docker, Inc. +Copyright 2012-2015 Docker, Inc. +Copyright 2013-2016 Docker, Inc. +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + +Apache-2.0 AND CC-BY-SA-4.0 + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fopencontainers/go-digest v1.0.0 - Apache-2.0 AND CC-BY-SA-4.0 + + +Copyright 2016 Docker, Inc. +Copyright 2017 Docker, Inc. +Copyright (c) 2016 Docker, Inc. +Copyright 2019, 2020 OCI Contributors +Copyright 2020, 2020 OCI Contributors +Copyright (c) 2019, 2020 OCI Contributors +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + +Apache-2.0 AND CC-BY-SA-4.0 + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Foneofone/xxhash v1.2.8 - Apache-2.0 AND ImageMagick + + +(c) 2012-2014, Yann Collet +Copyright (https://github.com/Cyan4973/xxHash/blob/master/LICENSE) + +Apache-2.0 AND ImageMagick + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fbgentry/speakeasy v0.1.0 - Apache-2.0 AND MIT + + +Copyright (c) 2017 Blake Gentry +Copyright 2013 the CloudFoundry Authors + +Apache-2.0 AND MIT + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fpelletier/go-toml v1.9.5 - Apache-2.0 AND MIT + + +Copyright 2016 Google LLC +Copyright (c) 2013 - 2021 Thomas Pelletier, Eric Anderton + +Apache-2.0 AND MIT + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fsergi/go-diff v1.1.0 - Apache-2.0 AND MIT + + +Copyright (c) 2012-2016 The go-diff Authors +Copyright (c) 2012-2016 The go-diff authors +Copyright (c) 2006 Google Inc. http://code.google.com/p/google-diff-match-patch +Copyright (c) 2006 Google Inc. + +Apache-2.0 AND MIT + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fcontainernetworking/plugins v1.4.0 - Apache-2.0 AND NOASSERTION + + +Copyright 2014 CNI authors +Copyright 2015 CNI authors +Copyright 2016 CNI authors +Copyright 2017 CNI authors +Copyright 2018 CNI authors +Copyright 2019 CNI authors +Copyright 2020 CNI authors +Copyright 2021 CNI authors +Copyright 2022 CNI authors +Copyright 2022 Arista Networks +Copyright 2015-2017 CNI authors +Copyright 2015-2018 CNI authors +Copyright 2016-2018 CNI authors +Copyright 2017-2018 CNI authors +Copyright 2017-2020 CNI authors +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + +Apache-2.0 AND NOASSERTION + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.universe.tf/metallb v0.11.0 - Apache-2.0 AND NOASSERTION + + +(c) Zeno Rocha +Copyright (c) 2014 Grav +Copyright Dave Gandy 2016 +Copyright 2017 Google Inc. +Copyright (c) 2016 MATHIEU CORNIC +Copyright (c) 2017 Valere JEANTET +Copyright 2021 The MetalLB Authors +Copyright (c) 2016 Oliver Nightingale +Copyright 2016 The Kubernetes Authors +Copyright (c) The MetalLB Contributors +(c) OpenJS Foundation and other contributors +Copyright (c) 2010-2011 by tyPoland Lukasz Dziedzic +Copyright 2015, Noel Raoul Bossart (http://www.noelboss.com) +Copyright (c) 2021 The Linux Foundation (r). The Linux Foundation +Copyright (c) 2004, 2006 The Linux Foundation and its contributors +(c) 2010-2011 by tyPoland Lukasz Dziedzic (http://www.typoland.com/) +Copyright (c) 2014 Simon Steinberger / Pixabay GitHub https://github.com/Pixabay/JavaScript-autoComplete + +Apache-2.0 AND NOASSERTION + +--------------------------------------------------------- + +--------------------------------------------------------- + +cheerio-select 2.1.0 - BSD-2-Clause +https://github.com/cheeriojs/cheerio-select#readme + +Copyright (c) Felix Bohm + Copyright (c) Felix Böhm All rights reserved. @@ -38348,17 +38348,17 @@ Redistributions in binary form must reproduce the above copyright notice, this l THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -configstore 6.0.0 - BSD-2-Clause -https://github.com/yeoman/configstore#readme - -Copyright (c) Google - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +configstore 6.0.0 - BSD-2-Clause +https://github.com/yeoman/configstore#readme + +Copyright (c) Google + BSD 2-Clause License Copyright (c) Google @@ -38384,18 +38384,18 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -css-select 4.3.0 - BSD-2-Clause -https://github.com/fb55/css-select#readme - -Copyright (c) Felix Bohm -(c) 2007-2020 Steven Levithan - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +css-select 4.3.0 - BSD-2-Clause +https://github.com/fb55/css-select#readme + +Copyright (c) Felix Bohm +(c) 2007-2020 Steven Levithan + Copyright (c) Felix Böhm All rights reserved. @@ -38407,18 +38407,18 @@ Redistributions in binary form must reproduce the above copyright notice, this l THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -css-select 5.1.0 - BSD-2-Clause -https://github.com/fb55/css-select#readme - -Copyright (c) Felix Bohm -(c) 2007-2020 Steven Levithan - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +css-select 5.1.0 - BSD-2-Clause +https://github.com/fb55/css-select#readme + +Copyright (c) Felix Bohm +(c) 2007-2020 Steven Levithan + Copyright (c) Felix Böhm All rights reserved. @@ -38430,17 +38430,17 @@ Redistributions in binary form must reproduce the above copyright notice, this l THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -css-what 6.1.0 - BSD-2-Clause -https://github.com/fb55/css-what#readme - -Copyright (c) Felix Bohm - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +css-what 6.1.0 - BSD-2-Clause +https://github.com/fb55/css-what#readme + +Copyright (c) Felix Bohm + Copyright (c) Felix Böhm All rights reserved. @@ -38452,18 +38452,18 @@ Redistributions in binary form must reproduce the above copyright notice, this l THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -default-gateway 6.0.3 - BSD-2-Clause -https://github.com/silverwind/default-gateway#readme - -Copyright (c) silverwind -(c) silverwind (https://github.com/silverwind) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +default-gateway 6.0.3 - BSD-2-Clause +https://github.com/silverwind/default-gateway#readme + +Copyright (c) silverwind +(c) silverwind (https://github.com/silverwind) + Copyright (c) silverwind All rights reserved. @@ -38486,17 +38486,17 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -domelementtype 2.3.0 - BSD-2-Clause -https://github.com/fb55/domelementtype#readme - -Copyright (c) Felix Bohm - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +domelementtype 2.3.0 - BSD-2-Clause +https://github.com/fb55/domelementtype#readme + +Copyright (c) Felix Bohm + Copyright (c) Felix Böhm All rights reserved. @@ -38508,17 +38508,17 @@ Redistributions in binary form must reproduce the above copyright notice, this l THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -domhandler 5.0.3 - BSD-2-Clause -https://github.com/fb55/domhandler#readme - -Copyright (c) Felix Bohm - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +domhandler 5.0.3 - BSD-2-Clause +https://github.com/fb55/domhandler#readme + +Copyright (c) Felix Bohm + Copyright (c) Felix Böhm All rights reserved. @@ -38530,17 +38530,17 @@ Redistributions in binary form must reproduce the above copyright notice, this l THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -domutils 3.1.0 - BSD-2-Clause -https://github.com/fb55/domutils#readme - -Copyright (c) Felix Bohm - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +domutils 3.1.0 - BSD-2-Clause +https://github.com/fb55/domutils#readme + +Copyright (c) Felix Bohm + Copyright (c) Felix Böhm All rights reserved. @@ -38552,17 +38552,17 @@ Redistributions in binary form must reproduce the above copyright notice, this l THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -entities 4.5.0 - BSD-2-Clause -https://github.com/fb55/entities#readme - -Copyright (c) Felix Bohm - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +entities 4.5.0 - BSD-2-Clause +https://github.com/fb55/entities#readme + +Copyright (c) Felix Bohm + Copyright (c) Felix Böhm All rights reserved. @@ -38574,22 +38574,22 @@ Redistributions in binary form must reproduce the above copyright notice, this l THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -eslint-scope 5.1.1 - BSD-2-Clause -http://github.com/eslint/eslint-scope - -Copyright (c) 2015 Yusuke Suzuki -Copyright (c) 2013 Alex Seville -Copyright (c) 2014 Thiago de Arruda -Copyright (c) 2012-2014 Yusuke Suzuki -Copyright JS Foundation and other contributors, https://js.foundation -Copyright (c) 2012-2013 Yusuke Suzuki (twitter Constellation) and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +eslint-scope 5.1.1 - BSD-2-Clause +http://github.com/eslint/eslint-scope + +Copyright (c) 2015 Yusuke Suzuki +Copyright (c) 2013 Alex Seville +Copyright (c) 2014 Thiago de Arruda +Copyright (c) 2012-2014 Yusuke Suzuki +Copyright JS Foundation and other contributors, https://js.foundation +Copyright (c) 2012-2013 Yusuke Suzuki (twitter Constellation) and other contributors + Copyright JS Foundation and other contributors, https://js.foundation Copyright (C) 2012-2013 Yusuke Suzuki (twitter: @Constellation) and other contributors. @@ -38612,17 +38612,17 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -esprima 4.0.1 - BSD-2-Clause -http://esprima.org/ - -Copyright JS Foundation and other contributors, https://js.foundation - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +esprima 4.0.1 - BSD-2-Clause +http://esprima.org/ + +Copyright JS Foundation and other contributors, https://js.foundation + Copyright JS Foundation and other contributors, https://js.foundation/ Redistribution and use in source and binary forms, with or without @@ -38644,18 +38644,18 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -esrecurse 4.3.0 - BSD-2-Clause -https://github.com/estools/esrecurse - -Copyright (c) 2014 Yusuke Suzuki -Copyright (c) 2014 Yusuke Suzuki (https://github.com/Constellation) (twitter Constellation (https://twitter.com/Constellation)) and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +esrecurse 4.3.0 - BSD-2-Clause +https://github.com/estools/esrecurse + +Copyright (c) 2014 Yusuke Suzuki +Copyright (c) 2014 Yusuke Suzuki (https://github.com/Constellation) (twitter Constellation (https://twitter.com/Constellation)) and other contributors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38664,20 +38664,20 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -estraverse 4.3.0 - BSD-2-Clause -https://github.com/estools/estraverse - -Copyright (c) 2014 Yusuke Suzuki -Copyright (c) 2012 Ariya Hidayat -Copyright (c) 2012-2013 Yusuke Suzuki -Copyright (c) 2012-2016 Yusuke Suzuki (http://github.com/Constellation) (twitter Constellation (http://twitter.com/Constellation)) and other contributors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +estraverse 4.3.0 - BSD-2-Clause +https://github.com/estools/estraverse + +Copyright (c) 2014 Yusuke Suzuki +Copyright (c) 2012 Ariya Hidayat +Copyright (c) 2012-2013 Yusuke Suzuki +Copyright (c) 2012-2016 Yusuke Suzuki (http://github.com/Constellation) (twitter Constellation (http://twitter.com/Constellation)) and other contributors + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38697,20 +38697,20 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -estraverse 5.3.0 - BSD-2-Clause -https://github.com/estools/estraverse - -Copyright (c) 2014 Yusuke Suzuki -Copyright (c) 2012 Ariya Hidayat -Copyright (c) 2012-2013 Yusuke Suzuki -Copyright (c) 2012-2016 Yusuke Suzuki (http://github.com/Constellation) (twitter Constellation (http://twitter.com/Constellation)) and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +estraverse 5.3.0 - BSD-2-Clause +https://github.com/estools/estraverse + +Copyright (c) 2014 Yusuke Suzuki +Copyright (c) 2012 Ariya Hidayat +Copyright (c) 2012-2013 Yusuke Suzuki +Copyright (c) 2012-2016 Yusuke Suzuki (http://github.com/Constellation) (twitter Constellation (http://twitter.com/Constellation)) and other contributors + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38730,20 +38730,20 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -esutils 2.0.3 - BSD-2-Clause -https://github.com/estools/esutils - -Copyright (c) 2014 Ivan Nikulin -Copyright (c) 2013 Yusuke Suzuki -Copyright (c) 2013-2014 Yusuke Suzuki -Copyright (c) 2013 Yusuke Suzuki (http://github.com/Constellation) (twitter Constellation (http://twitter.com/Constellation)) and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +esutils 2.0.3 - BSD-2-Clause +https://github.com/estools/esutils + +Copyright (c) 2014 Ivan Nikulin +Copyright (c) 2013 Yusuke Suzuki +Copyright (c) 2013-2014 Yusuke Suzuki +Copyright (c) 2013 Yusuke Suzuki (http://github.com/Constellation) (twitter Constellation (http://twitter.com/Constellation)) and other contributors + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38763,18 +38763,18 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcilium/checkmate v1.0.3 - BSD-2-Clause - - -Copyright (c) 2012 The Go Authors -Copyright (c) 2010-2013 Gustavo Niemeyer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcilium/checkmate v1.0.3 - BSD-2-Clause + + +Copyright (c) 2012 The Go Authors +Copyright (c) 2010-2013 Gustavo Niemeyer + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38783,20 +38783,20 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdnaeon/go-vcr v1.2.0 - BSD-2-Clause - - -Copyright (c) 2016 David Jack -Copyright (c) 2015 Marin Atanasov Nikolov -Copyright (c) 2016 Marin Atanasov Nikolov -Copyright (c) 2015-2016 Marin Atanasov Nikolov - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdnaeon/go-vcr v1.2.0 - BSD-2-Clause + + +Copyright (c) 2016 David Jack +Copyright (c) 2015 Marin Atanasov Nikolov +Copyright (c) 2016 Marin Atanasov Nikolov +Copyright (c) 2015-2016 Marin Atanasov Nikolov + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38805,17 +38805,17 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgodbus%2Fdbus/v5 v5.1.0 - BSD-2-Clause - - -Copyright (c) 2013, Georg Reinke , Google - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgodbus%2Fdbus/v5 v5.1.0 - BSD-2-Clause + + +Copyright (c) 2013, Georg Reinke , Google + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38824,18 +38824,18 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgorilla/handlers v1.5.1 - BSD-2-Clause - - -Copyright 2013 The Gorilla Authors -Copyright (c) 2013 The Gorilla Handlers Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgorilla/handlers v1.5.1 - BSD-2-Clause + + +Copyright 2013 The Gorilla Authors +Copyright (c) 2013 The Gorilla Handlers Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38844,24 +38844,24 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgorilla/websocket v1.5.0 - BSD-2-Clause - - -Copyright 2013 The Gorilla WebSocket Authors -Copyright 2014 The Gorilla WebSocket Authors -Copyright 2015 The Gorilla WebSocket Authors -Copyright 2016 The Gorilla WebSocket Authors -Copyright 2017 The Gorilla WebSocket Authors -Copyright 2019 The Gorilla WebSocket Authors -Copyright (c) 2013 The Gorilla WebSocket Authors -Copyright (c) 2008-2009 Bjoern Hoehrmann - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgorilla/websocket v1.5.0 - BSD-2-Clause + + +Copyright 2013 The Gorilla WebSocket Authors +Copyright 2014 The Gorilla WebSocket Authors +Copyright 2015 The Gorilla WebSocket Authors +Copyright 2016 The Gorilla WebSocket Authors +Copyright 2017 The Gorilla WebSocket Authors +Copyright 2019 The Gorilla WebSocket Authors +Copyright (c) 2013 The Gorilla WebSocket Authors +Copyright (c) 2008-2009 Bjoern Hoehrmann + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38870,17 +38870,17 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkarrick/godirwalk v1.16.1 - BSD-2-Clause - - -Copyright (c) 2017, Karrick McDermott - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkarrick/godirwalk v1.16.1 - BSD-2-Clause + + +Copyright (c) 2017, Karrick McDermott + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38889,20 +38889,20 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmagiconair/properties v1.8.7 - BSD-2-Clause - - -Copyright 2011 The Go Authors -Copyright 2013-2014 Frank Schroeder -Copyright 2013-2022 Frank Schroeder -Copyright (c) 2013-2020, Frank Schroeder - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmagiconair/properties v1.8.7 - BSD-2-Clause + + +Copyright 2011 The Go Authors +Copyright 2013-2014 Frank Schroeder +Copyright 2013-2022 Frank Schroeder +Copyright (c) 2013-2020, Frank Schroeder + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38911,19 +38911,19 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmikioh/ipaddr v0.0.0-20190404000644-d465c8ab6721 - BSD-2-Clause - - -Copyright 2013 Mikio Hara -Copyright 2015 Mikio Hara -Copyright (c) 2014, Mikio Hara - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmikioh/ipaddr v0.0.0-20190404000644-d465c8ab6721 - BSD-2-Clause + + +Copyright 2013 Mikio Hara +Copyright 2015 Mikio Hara +Copyright (c) 2014, Mikio Hara + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38932,17 +38932,17 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fpkg/browser v0.0.0-20240102092130-5ac0b6a4141c - BSD-2-Clause - - -Copyright (c) 2014, Dave Cheney - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fpkg/browser v0.0.0-20240102092130-5ac0b6a4141c - BSD-2-Clause + + +Copyright (c) 2014, Dave Cheney + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38951,17 +38951,17 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fpkg/errors v0.9.1 - BSD-2-Clause - - -Copyright (c) 2015, Dave Cheney - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fpkg/errors v0.9.1 - BSD-2-Clause + + +Copyright (c) 2015, Dave Cheney + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38970,17 +38970,17 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fpkg/sftp v1.13.6 - BSD-2-Clause - - -Copyright (c) 2013, Dave Cheney - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fpkg/sftp v1.13.6 - BSD-2-Clause + + +Copyright (c) 2013, Dave Cheney + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -38989,19 +38989,19 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Frussross%2Fblackfriday/v2 v2.1.0 - BSD-2-Clause - - -(c) 2004 Foo Corporation -Copyright (c) 2011 Russ Ross -Copyright (c) 2011 Russ Ross - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Frussross%2Fblackfriday/v2 v2.1.0 - BSD-2-Clause + + +(c) 2004 Foo Corporation +Copyright (c) 2011 Russ Ross +Copyright (c) 2011 Russ Ross + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39010,19 +39010,19 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Frussross/blackfriday v1.6.0 - BSD-2-Clause - - -(c) 2004 Foo Corporation -Copyright (c) 2011 Russ Ross -Copyright (c) 2011 Russ Ross - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Frussross/blackfriday v1.6.0 - BSD-2-Clause + + +(c) 2004 Foo Corporation +Copyright (c) 2011 Russ Ross +Copyright (c) 2011 Russ Ross + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39031,18 +39031,18 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fseccomp/libseccomp-golang v0.10.0 - BSD-2-Clause - - -Copyright (c) 2015 Paul Moore -Copyright (c) 2015 Matthew Heon - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fseccomp/libseccomp-golang v0.10.0 - BSD-2-Clause + + +Copyright (c) 2015 Paul Moore +Copyright (c) 2015 Matthew Heon + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39051,18 +39051,18 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fsyndtr/gocapability v0.0.0-20200815063812-42c35b437635 - BSD-2-Clause - - -Copyright 2013 Suryandaru Triandana -Copyright (c) 2013, Suryandaru Triandana - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fsyndtr/gocapability v0.0.0-20200815063812-42c35b437635 - BSD-2-Clause + + +Copyright 2013 Suryandaru Triandana +Copyright (c) 2013, Suryandaru Triandana + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39071,17 +39071,17 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fyvasiyarov/gorelic v0.0.0-20141212073537-a9bba5b9ab50 - BSD-2-Clause - - -Copyright (c) 2013 Yuriy Vasiyarov - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fyvasiyarov/gorelic v0.0.0-20141212073537-a9bba5b9ab50 - BSD-2-Clause + + +Copyright (c) 2013 Yuriy Vasiyarov + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39090,17 +39090,17 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fyvasiyarov/newrelic_platform_go v0.0.0-20140908184405-b21fdbd4370f - BSD-2-Clause - - -Copyright (c) 2013 Yuriy Vasiyarov - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fyvasiyarov/newrelic_platform_go v0.0.0-20140908184405-b21fdbd4370f - BSD-2-Clause + + +Copyright (c) 2013 Yuriy Vasiyarov + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39109,18 +39109,18 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gitlab.com%2Fgolang-commonmark/puny v0.0.0-20191124015043-9f83538fa04f - BSD-2-Clause - - -Copyright 2015 The Authors -Copyright (c) 2015, The Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gitlab.com%2Fgolang-commonmark/puny v0.0.0-20191124015043-9f83538fa04f - BSD-2-Clause + + +Copyright 2015 The Authors +Copyright (c) 2015, The Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39129,17 +39129,17 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -glob-to-regexp 0.4.1 - BSD-2-Clause -https://github.com/fitzgen/glob-to-regexp#readme - -Copyright (c) 2013, Nick Fitzgerald - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +glob-to-regexp 0.4.1 - BSD-2-Clause +https://github.com/fitzgen/glob-to-regexp#readme + +Copyright (c) 2013, Nick Fitzgerald + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39148,18 +39148,18 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c - BSD-2-Clause - - -Copyright (c) 2012 The Go Authors -Copyright (c) 2010-2013 Gustavo Niemeyer - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c - BSD-2-Clause + + +Copyright (c) 2012 The Go Authors +Copyright (c) 2010-2013 Gustavo Niemeyer + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39168,17 +39168,17 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -http-cache-semantics 4.1.1 - BSD-2-Clause -https://github.com/kornelski/http-cache-semantics#readme - -Copyright 2016-2018 Kornel Lesinski - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +http-cache-semantics 4.1.1 - BSD-2-Clause +https://github.com/kornelski/http-cache-semantics#readme + +Copyright 2016-2018 Kornel Lesinski + Copyright 2016-2018 Kornel Lesiński Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39188,17 +39188,17 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -nth-check 2.1.1 - BSD-2-Clause -https://github.com/fb55/nth-check - -Copyright (c) Felix Bohm - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +nth-check 2.1.1 - BSD-2-Clause +https://github.com/fb55/nth-check + +Copyright (c) Felix Bohm + Copyright (c) Felix Böhm All rights reserved. @@ -39210,17 +39210,17 @@ Redistributions in binary form must reproduce the above copyright notice, this l THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -regjsparser 0.9.1 - BSD-2-Clause -https://github.com/jviereck/regjsparser - -Copyright (c) Julian Viereck and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +regjsparser 0.9.1 - BSD-2-Clause +https://github.com/jviereck/regjsparser + +Copyright (c) Julian Viereck and Contributors + Copyright (c) Julian Viereck and Contributors, All Rights Reserved. Redistribution and use in source and binary forms, with or without @@ -39242,18 +39242,18 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -stringify-object 3.3.0 - BSD-2-Clause -https://github.com/yeoman/stringify-object#readme - -(c) Yeoman team -Copyright (c) 2015, Yeoman team - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +stringify-object 3.3.0 - BSD-2-Clause +https://github.com/yeoman/stringify-object#readme + +(c) Yeoman team +Copyright (c) 2015, Yeoman team + Copyright (c) 2015, Yeoman team All rights reserved. @@ -39276,18 +39276,18 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -terser 5.26.0 - BSD-2-Clause -https://terser.org/ - -Copyright 2012 (c) Mihai Bazon -Copyright 2012-2018 (c) Mihai Bazon - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +terser 5.26.0 - BSD-2-Clause +https://terser.org/ + +Copyright 2012 (c) Mihai Bazon +Copyright 2012-2018 (c) Mihai Bazon + Copyright 2012-2018 (c) Mihai Bazon Redistribution and use in source and binary forms, with or without @@ -39315,16 +39315,16 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -update-notifier 6.0.2 - BSD-2-Clause -https://github.com/yeoman/update-notifier#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +update-notifier 6.0.2 - BSD-2-Clause +https://github.com/yeoman/update-notifier#readme + + Copyright Google Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39334,18 +39334,18 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -uri-js 4.4.1 - BSD-2-Clause -https://github.com/garycourt/uri-js - -(c) 2011 Gary Court -Copyright 2011 Gary Court - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +uri-js 4.4.1 - BSD-2-Clause +https://github.com/garycourt/uri-js + +(c) 2011 Gary Court +Copyright 2011 Gary Court + Copyright 2011 Gary Court. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39357,18 +39357,18 @@ Redistribution and use in source and binary forms, with or without modification, THIS SOFTWARE IS PROVIDED BY GARY COURT "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARY COURT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of Gary Court. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -rc 1.2.8 - BSD-2-Clause OR (MIT OR Apache-2.0) -https://github.com/dominictarr/rc#readme - -Copyright (c) 2011 Dominic Tarr -Copyright (c) 2013, Dominic Tarr - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +rc 1.2.8 - BSD-2-Clause OR (MIT OR Apache-2.0) +https://github.com/dominictarr/rc#readme + +Copyright (c) 2011 Dominic Tarr +Copyright (c) 2013, Dominic Tarr + The MIT License Copyright (c) 2011 Dominic Tarr @@ -39393,42 +39393,42 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Frcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 - BSD-2-Clause-Views - - -Copyright 2012 Richard Crowley - -BSD-2-Clause-Views - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fyvasiyarov/go-metrics v0.0.0-20140926110328-57bccd1ccd43 - BSD-2-Clause-Views - - -Copyright 2012 Richard Crowley - -BSD-2-Clause-Views - ---------------------------------------------------------- - ---------------------------------------------------------- - -@hapi/hoek 9.3.0 - BSD-3-Clause -https://github.com/hapijs/hoek#readme - -Copyright (c) 2011, Yahoo Inc. -Copyright (c) 2011-2014, Walmart -copyright (c) 2013 Jake Luer, jake@alogicalparadox.com -Copyright (c) 2011-2020, Sideway Inc, and project contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Frcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 - BSD-2-Clause-Views + + +Copyright 2012 Richard Crowley + +BSD-2-Clause-Views + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fyvasiyarov/go-metrics v0.0.0-20140926110328-57bccd1ccd43 - BSD-2-Clause-Views + + +Copyright 2012 Richard Crowley + +BSD-2-Clause-Views + +--------------------------------------------------------- + +--------------------------------------------------------- + +@hapi/hoek 9.3.0 - BSD-3-Clause +https://github.com/hapijs/hoek#readme + +Copyright (c) 2011, Yahoo Inc. +Copyright (c) 2011-2014, Walmart +copyright (c) 2013 Jake Luer, jake@alogicalparadox.com +Copyright (c) 2011-2020, Sideway Inc, and project contributors + Copyright (c) 2011-2020, Sideway Inc, and project contributors Copyright (c) 2011-2014, Walmart Copyright (c) 2011, Yahoo Inc. @@ -39441,18 +39441,18 @@ Redistribution and use in source and binary forms, with or without modification, * The names of any contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS OFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@hapi/topo 5.1.0 - BSD-3-Clause -https://github.com/hapijs/topo#readme - -Copyright (c) 2012-2014, Walmart -Copyright (c) 2012-2020, Sideway Inc, and project contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@hapi/topo 5.1.0 - BSD-3-Clause +https://github.com/hapijs/topo#readme + +Copyright (c) 2012-2014, Walmart +Copyright (c) 2012-2020, Sideway Inc, and project contributors + Copyright (c) 2012-2020, Sideway Inc, and project contributors Copyright (c) 2012-2014, Walmart. All rights reserved. @@ -39463,19 +39463,19 @@ Redistribution and use in source and binary forms, with or without modification, * The names of any contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS OFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@sideway/address 4.1.4 - BSD-3-Clause -https://github.com/sideway/address#readme - -Copyright (c) 2017-2019 Justin Ridgewell -Copyright (c) 2008-2009 Bjoern Hoehrmann -Copyright (c) 2019-2020, Sideway, Inc. and Project contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@sideway/address 4.1.4 - BSD-3-Clause +https://github.com/sideway/address#readme + +Copyright (c) 2017-2019 Justin Ridgewell +Copyright (c) 2008-2009 Bjoern Hoehrmann +Copyright (c) 2019-2020, Sideway, Inc. and Project contributors + Copyright (c) 2019-2020, Sideway, Inc. and Project contributors All rights reserved. @@ -39485,18 +39485,18 @@ Redistribution and use in source and binary forms, with or without modification, * The names of any contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@sideway/formula 3.0.1 - BSD-3-Clause -https://github.com/sideway/formula#readme - -copyright 2012-2018 Alexander Schenkel -Copyright (c) 2019-2020, Sideway. Inc, and project contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@sideway/formula 3.0.1 - BSD-3-Clause +https://github.com/sideway/formula#readme + +copyright 2012-2018 Alexander Schenkel +Copyright (c) 2019-2020, Sideway. Inc, and project contributors + Copyright (c) 2019-2020, Sideway. Inc, and project contributors All rights reserved. @@ -39506,17 +39506,17 @@ Redistribution and use in source and binary forms, with or without modification, * The names of any contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@sideway/pinpoint 2.0.0 - BSD-3-Clause -https://github.com/sideway/pinpoint#readme - -Copyright (c) 2019-2020, Sideway. Inc, and project contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@sideway/pinpoint 2.0.0 - BSD-3-Clause +https://github.com/sideway/pinpoint#readme + +Copyright (c) 2019-2020, Sideway. Inc, and project contributors + Copyright (c) 2019-2020, Sideway. Inc, and project contributors All rights reserved. @@ -39527,17 +39527,17 @@ Redistribution and use in source and binary forms, with or without modification, * The names of any contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS OFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@xtuc/ieee754 1.2.0 - BSD-3-Clause -https://github.com/feross/ieee754#readme - -Copyright (c) 2008, Fair Oaks Labs, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@xtuc/ieee754 1.2.0 - BSD-3-Clause +https://github.com/feross/ieee754#readme + +Copyright (c) 2008, Fair Oaks Labs, Inc. + Copyright (c) 2008, Fair Oaks Labs, Inc. All rights reserved. @@ -39566,21 +39566,21 @@ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -dario.cat/mergo v1.0.0 - BSD-3-Clause - - -Copyright 2013 Dario Castane -Copyright 2014 Dario Castane -Copyright 2009 The Go Authors -Copyright (c) 2013 Dario Castane -Copyright (c) 2012 The Go Authors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +dario.cat/mergo v1.0.0 - BSD-3-Clause + + +Copyright 2013 Dario Castane +Copyright 2014 Dario Castane +Copyright 2009 The Go Authors +Copyright (c) 2013 Dario Castane +Copyright (c) 2012 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39591,58 +39591,58 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -filesize 8.0.7 - BSD-3-Clause -https://filesizejs.com/ - -Copyright (c) 2022 Jason Mulligan -Copyright (c) 2022, Jason Mulligan -copyright 2022 Jason Mulligan - -Copyright (c) 2022, Jason Mulligan -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -* Neither the name of filesize nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - - ---------------------------------------------------------- - ---------------------------------------------------------- - -flat 5.0.2 - BSD-3-Clause -https://github.com/hughsk/flat - -Copyright (c) 2014, Hugh Kennedy - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +filesize 8.0.7 - BSD-3-Clause +https://filesizejs.com/ + +Copyright (c) 2022 Jason Mulligan +Copyright (c) 2022, Jason Mulligan +copyright 2022 Jason Mulligan + +Copyright (c) 2022, Jason Mulligan +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of filesize nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + +--------------------------------------------------------- + +--------------------------------------------------------- + +flat 5.0.2 - BSD-3-Clause +https://github.com/hughsk/flat + +Copyright (c) 2014, Hugh Kennedy + Copyright (c) 2014, Hugh Kennedy All rights reserved. @@ -39655,19 +39655,19 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Falecthomas/template v0.0.0-20190718012654-fb15b899a751 - BSD-3-Clause - - -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright (c) 2012 The Go Authors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Falecthomas/template v0.0.0-20190718012654-fb15b899a751 - BSD-3-Clause + + +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright (c) 2012 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39678,52 +39678,52 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fchai2010/gettext-go v1.0.2 - BSD-3-Clause - - -Copyright 2013 -Copyright 2019 -(c) nam 1997-2002 -(c) nam 2001-2004 -(c) nam 2005 To chuc Phan -(c) nam 2000, Ximian, Inc. -Copyright 2013 ChaiShushan -Copyright 2020 ChaiShushan -(c) nam 2000, Helix Code, Inc. -(c) nam 2002, 2003 Roland Stigge -Copyright (c) 2000, Ximian, Inc. -(c) nam 2002-2003 Roman Festchook -Copyright (c) 2003 Yoyodyne, Inc. -Copyright (c) 2005 Yoyodyne, Inc. -Copyright 2002, 2003 Roland Stigge -Copyright (c) 2001 - Cornelis Frank -(c) nam 1988-1993 Miguel Santana Ban -Copyright (c) 2000, Helix Code, Inc. -Copyright (c) 2006 Gnome i18n Project -Copyright (c) 1988-1993 Miguel Santana -Copyright (c) 2002, 2003 Roland Stigge -Copyright (c) 2002-2003 Roman Festchook -Copyright (c) 1997-2002 msgstr Ban quyen -Copyright (c) 2001-2004 msgstr Ban quyen -(c) 2005 Frederic Ruaudel -(c) nam 1999 Free Software Foundation, Inc. -Copyright (c) Free Software Foundation, Inc. -Copyright 2005 Free Software Foundation, Inc. -(c) nam 1995-2000 Akim Demaille, Miguel Santana -(c) nam 2005 Frederic Ruaudel -Copyright (c) 1999 Free Software Foundation, Inc. -Copyright (c) 2000 Free Software Foundation, Inc. -Copyright (c) 1998-2002 The Free Software Foundation -Copyright (c) 1995-2000 Akim Demaille, Miguel Santana -Copyright (c) 1997-2002 Copyright (c) 1999 Free Software Foundation, Inc. -Copyright (c) 2001-2004 Copyright 2005 Free Software Foundation, Inc. Correcting dependencies... Corrupted - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fchai2010/gettext-go v1.0.2 - BSD-3-Clause + + +Copyright 2013 +Copyright 2019 +(c) nam 1997-2002 +(c) nam 2001-2004 +(c) nam 2005 To chuc Phan +(c) nam 2000, Ximian, Inc. +Copyright 2013 ChaiShushan +Copyright 2020 ChaiShushan +(c) nam 2000, Helix Code, Inc. +(c) nam 2002, 2003 Roland Stigge +Copyright (c) 2000, Ximian, Inc. +(c) nam 2002-2003 Roman Festchook +Copyright (c) 2003 Yoyodyne, Inc. +Copyright (c) 2005 Yoyodyne, Inc. +Copyright 2002, 2003 Roland Stigge +Copyright (c) 2001 - Cornelis Frank +(c) nam 1988-1993 Miguel Santana Ban +Copyright (c) 2000, Helix Code, Inc. +Copyright (c) 2006 Gnome i18n Project +Copyright (c) 1988-1993 Miguel Santana +Copyright (c) 2002, 2003 Roland Stigge +Copyright (c) 2002-2003 Roman Festchook +Copyright (c) 1997-2002 msgstr Ban quyen +Copyright (c) 2001-2004 msgstr Ban quyen +(c) 2005 Frederic Ruaudel +(c) nam 1999 Free Software Foundation, Inc. +Copyright (c) Free Software Foundation, Inc. +Copyright 2005 Free Software Foundation, Inc. +(c) nam 1995-2000 Akim Demaille, Miguel Santana +(c) nam 2005 Frederic Ruaudel +Copyright (c) 1999 Free Software Foundation, Inc. +Copyright (c) 2000 Free Software Foundation, Inc. +Copyright (c) 1998-2002 The Free Software Foundation +Copyright (c) 1995-2000 Akim Demaille, Miguel Santana +Copyright (c) 1997-2002 Copyright (c) 1999 Free Software Foundation, Inc. +Copyright (c) 2001-2004 Copyright 2005 Free Software Foundation, Inc. Correcting dependencies... Corrupted + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39734,18 +39734,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcirconus-labs/circonus-gometrics v2.3.1+incompatible - BSD-3-Clause - - -Copyright 2016 Circonus, Inc. -Copyright (c) 2016, Circonus, Inc. - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcirconus-labs/circonus-gometrics v2.3.1+incompatible - BSD-3-Clause + + +Copyright 2016 Circonus, Inc. +Copyright (c) 2016, Circonus, Inc. + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39756,18 +39756,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcirconus-labs/circonusllhist v0.1.3 - BSD-3-Clause - - -Copyright 2016, Circonus, Inc. -Copyright (c) 2016 Circonus, Inc. - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcirconus-labs/circonusllhist v0.1.3 - BSD-3-Clause + + +Copyright 2016, Circonus, Inc. +Copyright (c) 2016 Circonus, Inc. + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39778,18 +39778,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fcyphar/filepath-securejoin v0.2.4 - BSD-3-Clause - - -Copyright (c) 2017 SUSE LLC. -Copyright (c) 2014-2015 Docker Inc & Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fcyphar/filepath-securejoin v0.2.4 - BSD-3-Clause + + +Copyright (c) 2017 SUSE LLC. +Copyright (c) 2014-2015 Docker Inc & Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39800,17 +39800,17 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdata-dog/go-sqlmock v1.5.2 - BSD-3-Clause - - -Copyright (c) 2013-2019, DATA-DOG team - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdata-dog/go-sqlmock v1.5.2 - BSD-3-Clause + + +Copyright (c) 2013-2019, DATA-DOG team + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39821,19 +39821,19 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdenisenkom/go-mssqldb v0.9.0 - BSD-3-Clause - - -Copyright 2011 The Go Authors -Copyright 2017 The Go Authors -Copyright (c) 2012 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdenisenkom/go-mssqldb v0.9.0 - BSD-3-Clause + + +Copyright 2011 The Go Authors +Copyright 2017 The Go Authors +Copyright (c) 2012 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39844,17 +39844,17 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fevanphx%2Fjson-patch/v5 v5.7.0 - BSD-3-Clause - - -Copyright (c) 2014, Evan Phoenix - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fevanphx%2Fjson-patch/v5 v5.7.0 - BSD-3-Clause + + +Copyright (c) 2014, Evan Phoenix + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39865,17 +39865,17 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fevanphx/json-patch v5.7.0+incompatible - BSD-3-Clause - - -Copyright (c) 2014, Evan Phoenix - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fevanphx/json-patch v5.7.0+incompatible - BSD-3-Clause + + +Copyright (c) 2014, Evan Phoenix + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39886,18 +39886,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2ffsnotify/fsnotify v1.7.0 - BSD-3-Clause - - -Copyright (c) fsnotify Authors -Copyright (c) 2012 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2ffsnotify/fsnotify v1.7.0 - BSD-3-Clause + + +Copyright (c) fsnotify Authors +Copyright (c) 2012 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39908,21 +39908,21 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgofrs/flock v0.8.1 - BSD-3-Clause - - -Copyright 2018 The Gofrs -Copyright 2015 Tim Heckman -Copyright 2019 Tim Heckman -Copyright 2018 The Go Authors -Copyright (c) 2015-2020, Tim Heckman - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgofrs/flock v0.8.1 - BSD-3-Clause + + +Copyright 2018 The Gofrs +Copyright 2015 Tim Heckman +Copyright 2019 Tim Heckman +Copyright 2018 The Go Authors +Copyright (c) 2015-2020, Tim Heckman + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39933,34 +39933,34 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgogo/protobuf v1.3.2 - BSD-3-Clause - - -Copyright 2008 Google Inc. -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2013 The Go Authors -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright (c) 2013, The GoGo Authors -Copyright (c) 2015, The GoGo Authors -Copyright (c) 2016, The GoGo Authors -Copyright (c) 2017, The GoGo Authors -Copyright (c) 2018, The GoGo Authors -Copyright (c) 2019, The GoGo Authors -Copyright 2010 The Go Authors. https://github.com/golang/protobuf - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgogo/protobuf v1.3.2 - BSD-3-Clause + + +Copyright 2008 Google Inc. +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2013 The Go Authors +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright (c) 2013, The GoGo Authors +Copyright (c) 2015, The GoGo Authors +Copyright (c) 2016, The GoGo Authors +Copyright (c) 2017, The GoGo Authors +Copyright (c) 2018, The GoGo Authors +Copyright (c) 2019, The GoGo Authors +Copyright 2010 The Go Authors. https://github.com/golang/protobuf + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -39971,25 +39971,25 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgolang/protobuf v1.5.4 - BSD-3-Clause - - -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2020 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgolang/protobuf v1.5.4 - BSD-3-Clause + + +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2020 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40000,21 +40000,21 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgolang/snappy v0.0.4 - BSD-3-Clause - - -Copyright 2016 The Go Authors -Copyright 2020 The Go Authors -Copyright 2011 The Snappy-Go Authors -Copyright 2016 The Snappy-Go Authors -Copyright (c) 2011 The Snappy-Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgolang/snappy v0.0.4 - BSD-3-Clause + + +Copyright 2016 The Go Authors +Copyright 2020 The Go Authors +Copyright 2011 The Snappy-Go Authors +Copyright 2016 The Snappy-Go Authors +Copyright (c) 2011 The Snappy-Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40025,21 +40025,21 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle/go-cmp v0.6.0 - BSD-3-Clause - - -Copyright 2017, The Go Authors -Copyright 2018, The Go Authors -Copyright 2019, The Go Authors -Copyright 2020, The Go Authors -Copyright (c) 2017 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle/go-cmp v0.6.0 - BSD-3-Clause + + +Copyright 2017, The Go Authors +Copyright 2018, The Go Authors +Copyright 2019, The Go Authors +Copyright 2020, The Go Authors +Copyright (c) 2017 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40050,41 +40050,41 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoogle/gopacket v1.1.19 - BSD-3-Clause - - -Copyright 2012 Google, Inc. -Copyright 2013 Google, Inc. -Copyright 2014 Google, Inc. -Copyright 2015 Google, Inc. -Copyright 2016 Google, Inc. -Copyright 2017 Google, Inc. -Copyright 2018 Google, Inc. -Copyright 2012, Google, Inc. -Copyright 2014 Damjan Cvetko -Copyright 2014, Google, Inc. -Copyright 2016, Google, Inc. -Copyright 2017, Google, Inc. -Copyright 2018, Google, Inc. -Copyright 2009 The Go Authors -Copyright (c) 2012 Google, Inc. -Copyright 2018 GoPacket Authors -Copyright 2018 The GoPacket Authors -Copyright 2019 The GoPacket Authors -Copyright 2020 The GoPacket Authors -Copyright 2018, The GoPacket Authors -Copyright 2009-2011 Andreas Krennmair -Copyright 2012, 2018 GoPacket Authors -Copyright 2014, 2018 GoPacket Authors -Copyright (c) 2009-2011 Andreas Krennmair -Copyright (c) 1986-2010 by cisco Systems, Inc. - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoogle/gopacket v1.1.19 - BSD-3-Clause + + +Copyright 2012 Google, Inc. +Copyright 2013 Google, Inc. +Copyright 2014 Google, Inc. +Copyright 2015 Google, Inc. +Copyright 2016 Google, Inc. +Copyright 2017 Google, Inc. +Copyright 2018 Google, Inc. +Copyright 2012, Google, Inc. +Copyright 2014 Damjan Cvetko +Copyright 2014, Google, Inc. +Copyright 2016, Google, Inc. +Copyright 2017, Google, Inc. +Copyright 2018, Google, Inc. +Copyright 2009 The Go Authors +Copyright (c) 2012 Google, Inc. +Copyright 2018 GoPacket Authors +Copyright 2018 The GoPacket Authors +Copyright 2019 The GoPacket Authors +Copyright 2020 The GoPacket Authors +Copyright 2018, The GoPacket Authors +Copyright 2009-2011 Andreas Krennmair +Copyright 2012, 2018 GoPacket Authors +Copyright 2014, 2018 GoPacket Authors +Copyright (c) 2009-2011 Andreas Krennmair +Copyright (c) 1986-2010 by cisco Systems, Inc. + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40095,21 +40095,21 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgoogle/gops v0.3.27 - BSD-3-Clause - - -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2020 The Go Authors -Copyright 2022 The Go Authors -Copyright (c) 2016 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgoogle/gops v0.3.27 - BSD-3-Clause + + +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2020 The Go Authors +Copyright 2022 The Go Authors +Copyright (c) 2016 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40120,22 +40120,22 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgoogle/uuid v1.6.0 - BSD-3-Clause - - -Copyright 2016 Google Inc. -Copyright 2017 Google Inc. -Copyright 2018 Google Inc. -Copyright 2021 Google Inc. -Copyright 2023 Google Inc. -Copyright (c) 2009,2014 Google Inc. - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgoogle/uuid v1.6.0 - BSD-3-Clause + + +Copyright 2016 Google Inc. +Copyright 2017 Google Inc. +Copyright 2018 Google Inc. +Copyright 2021 Google Inc. +Copyright 2023 Google Inc. +Copyright (c) 2009,2014 Google Inc. + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40146,24 +40146,24 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgoogleapis%2fgax-go/v2 v2.12.0 - BSD-3-Clause - - -Copyright 2021 Google LLC -Copyright 2022 Google LLC -Copyright 2016, Google Inc. -Copyright 2018, Google Inc. -Copyright 2019, Google Inc. -Copyright 2021, Google Inc. -Copyright 2022, Google Inc. -Copyright 2023, Google Inc. - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgoogleapis%2fgax-go/v2 v2.12.0 - BSD-3-Clause + + +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2016, Google Inc. +Copyright 2018, Google Inc. +Copyright 2019, Google Inc. +Copyright 2021, Google Inc. +Copyright 2022, Google Inc. +Copyright 2023, Google Inc. + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40174,20 +40174,20 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fgorilla/mux v1.8.1 - BSD-3-Clause - - -Copyright 2009 The Go Authors -Copyright 2011 Gorilla Authors -Copyright 2012 The Gorilla Authors -Copyright (c) 2023 The Gorilla Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fgorilla/mux v1.8.1 - BSD-3-Clause + + +Copyright 2009 The Go Authors +Copyright 2011 Gorilla Authors +Copyright 2012 The Gorilla Authors +Copyright (c) 2023 The Gorilla Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40198,19 +40198,19 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgrpc-ecosystem%2Fgrpc-gateway/v2 v2.16.0 - BSD-3-Clause - - -Copyright 2009 The Go Authors -Copyright (c) 2015, Gengo, Inc. -Copyright 2010, 2019 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgrpc-ecosystem%2Fgrpc-gateway/v2 v2.16.0 - BSD-3-Clause + + +Copyright 2009 The Go Authors +Copyright (c) 2015, Gengo, Inc. +Copyright 2010, 2019 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40221,21 +40221,21 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgrpc-ecosystem/grpc-gateway v1.16.0 - BSD-3-Clause - - -Copyright 2017 Google Inc. -Copyright 2018 Google LLC. -Copyright 2010 The Go Authors -Copyright (c) 2015, Gengo, Inc. -Copyright (c) 2015, Google Inc. - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgrpc-ecosystem/grpc-gateway v1.16.0 - BSD-3-Clause + + +Copyright 2017 Google Inc. +Copyright 2018 Google LLC. +Copyright 2010 The Go Authors +Copyright (c) 2015, Gengo, Inc. +Copyright (c) 2015, Google Inc. + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40246,17 +40246,17 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-msgpack v0.5.5 - BSD-3-Clause - - -Copyright (c) 2012, 2013 Ugorji Nwoke - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-msgpack v0.5.5 - BSD-3-Clause + + +Copyright (c) 2012, 2013 Ugorji Nwoke + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40267,18 +40267,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639 - BSD-3-Clause - - -Copyright 2015 The Go Authors -Copyright (c) 2015 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639 - BSD-3-Clause + + +Copyright 2015 The Go Authors +Copyright (c) 2015 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40289,21 +40289,21 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fimdario/mergo v0.3.16 - BSD-3-Clause - - -Copyright 2013 Dario Castane -Copyright 2014 Dario Castane -Copyright 2009 The Go Authors -Copyright (c) 2013 Dario Castane -Copyright (c) 2012 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fimdario/mergo v0.3.16 - BSD-3-Clause + + +Copyright 2013 Dario Castane +Copyright 2014 Dario Castane +Copyright 2009 The Go Authors +Copyright (c) 2013 Dario Castane +Copyright (c) 2012 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40314,18 +40314,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjessevdk/go-flags v1.4.0 - BSD-3-Clause - - -Copyright 2012 Jesse van den Kieboom -Copyright (c) 2012 Jesse van den Kieboom - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjessevdk/go-flags v1.4.0 - BSD-3-Clause + + +Copyright 2012 Jesse van den Kieboom +Copyright (c) 2012 Jesse van den Kieboom + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40336,19 +40336,19 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjulienschmidt/httprouter v1.3.0 - BSD-3-Clause - - -Copyright 2009 The Go Authors -Copyright 2013 Julien Schmidt -Copyright (c) 2013, Julien Schmidt - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjulienschmidt/httprouter v1.3.0 - BSD-3-Clause + + +Copyright 2009 The Go Authors +Copyright 2013 Julien Schmidt +Copyright (c) 2013, Julien Schmidt + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40359,18 +40359,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkr/fs v0.1.0 - BSD-3-Clause - - -Copyright 2009 The Go Authors -Copyright (c) 2012 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkr/fs v0.1.0 - BSD-3-Clause + + +Copyright 2009 The Go Authors +Copyright (c) 2012 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40381,19 +40381,19 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fliggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de - BSD-3-Clause - - -Copyright 2009 The Go Authors -Copyright 2012 The Go Authors -Copyright (c) 2009 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fliggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de - BSD-3-Clause + + +Copyright 2009 The Go Authors +Copyright 2012 The Go Authors +Copyright (c) 2009 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40404,17 +40404,17 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 - BSD-3-Clause - - -Copyright (c) 2019, KADOTA, Kyohei - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 - BSD-3-Clause + + +Copyright (c) 2019, KADOTA, Kyohei + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40425,22 +40425,22 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmiekg/dns v1.1.41 - BSD-3-Clause - - -Copyright 2014 CloudFlare -Copyright 2011 Miek Gieben -Copyright 2009 The Go Authors -Copyright 2013 The Go Authors -copyright (c) 2011 Miek Gieben -Copyright (c) 2009 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmiekg/dns v1.1.41 - BSD-3-Clause + + +Copyright 2014 CloudFlare +Copyright 2011 Miek Gieben +Copyright 2009 The Go Authors +Copyright 2013 The Go Authors +copyright (c) 2011 Miek Gieben +Copyright (c) 2009 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40451,19 +40451,19 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmiekg/pkcs11 v1.1.1 - BSD-3-Clause - - -Copyright 2013 Miek Gieben -Copyright (c) OASIS Open 2016 -Copyright (c) 2013 Miek Gieben - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmiekg/pkcs11 v1.1.1 - BSD-3-Clause + + +Copyright 2013 Miek Gieben +Copyright (c) OASIS Open 2016 +Copyright (c) 2013 Miek Gieben + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40474,17 +40474,17 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmunnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 - BSD-3-Clause - - -Copyright (c) 2011, Open Knowledge Foundation Ltd. - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmunnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 - BSD-3-Clause + + +Copyright (c) 2011, Open Knowledge Foundation Ltd. + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40495,17 +40495,17 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmxk/go-flowrate v0.0.0-20140419014527-cca7078d478f - BSD-3-Clause - - -Copyright (c) 2014 The Go-FlowRate Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmxk/go-flowrate v0.0.0-20140419014527-cca7078d478f - BSD-3-Clause + + +Copyright (c) 2014 The Go-FlowRate Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40516,17 +40516,17 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fphayes/freeport v0.0.0-20220201140144-74d24b5ae9f5 - BSD-3-Clause - - -Copyright (c) 2014, Patrick Hayes / HighWire Press - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fphayes/freeport v0.0.0-20220201140144-74d24b5ae9f5 - BSD-3-Clause + + +Copyright (c) 2014, Patrick Hayes / HighWire Press + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40537,17 +40537,17 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fpkg/diff v0.0.0-20210226163009-20ebb0f2a09e - BSD-3-Clause - - -Copyright 2018 Joshua Bleecher Snyder - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fpkg/diff v0.0.0-20210226163009-20ebb0f2a09e - BSD-3-Clause + + +Copyright 2018 Joshua Bleecher Snyder + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40558,17 +40558,17 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fpmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 - BSD-3-Clause - - -Copyright (c) 2013, Patrick Mezard - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fpmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 - BSD-3-Clause + + +Copyright (c) 2013, Patrick Mezard + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40579,27 +40579,27 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2frogpeppe/go-internal v1.11.0 - BSD-3-Clause - - -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2022 The Go Authors -Copyright (c) 2018 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2frogpeppe/go-internal v1.11.0 - BSD-3-Clause + + +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2022 The Go Authors +Copyright (c) 2018 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40610,18 +40610,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fsagikazarmark/slog-shim v0.1.0 - BSD-3-Clause - - -Copyright 2022 The Go Authors -Copyright (c) 2009 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fsagikazarmark/slog-shim v0.1.0 - BSD-3-Clause + + +Copyright 2022 The Go Authors +Copyright (c) 2009 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40632,16 +40632,16 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fshirou%2Fgopsutil/v3 v3.23.2 - BSD-3-Clause - - - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fshirou%2Fgopsutil/v3 v3.23.2 - BSD-3-Clause + + + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40652,21 +40652,21 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fspf13/pflag v1.0.5 - BSD-3-Clause - - -Copyright (c) 2012 Alex Ogier -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -Copyright 2012 The Go Authors -Copyright (c) 2012 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fspf13/pflag v1.0.5 - BSD-3-Clause + + +Copyright (c) 2012 Alex Ogier +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +Copyright 2012 The Go Authors +Copyright (c) 2012 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40677,20 +40677,20 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Ftklauser/go-sysconf v0.3.11 - BSD-3-Clause - - -Copyright 2018 Tobias Klauser -Copyright 2021 Tobias Klauser -Copyright 2022 Tobias Klauser -Copyright (c) 2018-2022, Tobias Klauser - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Ftklauser/go-sysconf v0.3.11 - BSD-3-Clause + + +Copyright 2018 Tobias Klauser +Copyright 2021 Tobias Klauser +Copyright 2022 Tobias Klauser +Copyright (c) 2018-2022, Tobias Klauser + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40701,20 +40701,20 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fulikunitz/xz v0.5.11 - BSD-3-Clause - - -Copyright (c) 2009 The Go Authors -Copyright 2014-2022 Ulrich Kunitz -Copyright (c) 2014-2022 Ulrich Kunitz -copyright on a GUI. The Apple Computer, Inc. v. Microsoft Corp. - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fulikunitz/xz v0.5.11 - BSD-3-Clause + + +Copyright (c) 2009 The Go Authors +Copyright 2014-2022 Ulrich Kunitz +Copyright (c) 2014-2022 Ulrich Kunitz +copyright on a GUI. The Apple Computer, Inc. v. Microsoft Corp. + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40725,21 +40725,21 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fvbatts/tar-split v0.11.5 - BSD-3-Clause - - -Copyright 2009 The Go Authors -Copyright 2012 The Go Authors -Copyright 2013 The Go Authors -Copyright 2016 The Go Authors -Copyright (c) 2015 Vincent Batts, Raleigh, NC - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fvbatts/tar-split v0.11.5 - BSD-3-Clause + + +Copyright 2009 The Go Authors +Copyright 2012 The Go Authors +Copyright 2013 The Go Authors +Copyright 2016 The Go Authors +Copyright (c) 2015 Vincent Batts, Raleigh, NC + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40750,18 +40750,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fxhit%2Fgo-str2duration/v2 v2.1.0 - BSD-3-Clause - - -Copyright 2010 The Go Authors -Copyright (c) 2009 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fxhit%2Fgo-str2duration/v2 v2.1.0 - BSD-3-Clause + + +Copyright 2010 The Go Authors +Copyright (c) 2009 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40772,19 +40772,19 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go4.org/netipx v0.0.0-20231129151722-fdeea329fbba - BSD-3-Clause - - -Copyright 2020 The Inet.Af AUTHORS. -Copyright 2021 The Inet.Af AUTHORS. -Copyright (c) 2020 The Inet.af AUTHORS. - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go4.org/netipx v0.0.0-20231129151722-fdeea329fbba - BSD-3-Clause + + +Copyright 2020 The Inet.Af AUTHORS. +Copyright 2021 The Inet.Af AUTHORS. +Copyright (c) 2020 The Inet.af AUTHORS. + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40795,19 +40795,19 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2Fx%2Fexp/typeparams v0.0.0-20221208152030-732eee02a75a - BSD-3-Clause - - -Copyright 2021 The Go Authors -Copyright 2022 The Go Authors -Copyright (c) 2009 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2Fx%2Fexp/typeparams v0.0.0-20221208152030-732eee02a75a - BSD-3-Clause + + +Copyright 2021 The Go Authors +Copyright 2022 The Go Authors +Copyright (c) 2009 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40818,19 +40818,19 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2Fx/lint v0.0.0-20200302205851-738671d3881b - BSD-3-Clause - - -Copyright 2013 The Go Authors -Copyright (c) 2013 The Go Authors -Copyright (c) 2018 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2Fx/lint v0.0.0-20200302205851-738671d3881b - BSD-3-Clause + + +Copyright 2013 The Go Authors +Copyright (c) 2013 The Go Authors +Copyright (c) 2018 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40841,31 +40841,31 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2fx/oauth2 v0.18.0 - BSD-3-Clause - - -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright 2022 The Go Authors -Copyright 2023 The Go Authors -Copyright 2024 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright 2015 The oauth2 Authors -Copyright 2017 The oauth2 Authors -Copyright 2018 The oauth2 Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2fx/oauth2 v0.18.0 - BSD-3-Clause + + +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright 2022 The Go Authors +Copyright 2023 The Go Authors +Copyright 2024 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright 2015 The oauth2 Authors +Copyright 2017 The oauth2 Authors +Copyright 2018 The oauth2 Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40876,41 +40876,41 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -google.golang.org/api v0.153.0 - BSD-3-Clause - - -Copyright Google LLC. -Copyright 2011 Google LLC. -Copyright 2012 Google LLC. -Copyright 2013 Google LLC. -Copyright 2015 Google LLC. -Copyright 2016 Google LLC. -Copyright 2017 Google LLC. -Copyright 2018 Google LLC. -Copyright 2019 Google LLC. -Copyright 2020 Google LLC. -Copyright 2021 Google LLC. -Copyright 2022 Google LLC. -Copyright 2023 Google LLC. -Copyright YEAR Google LLC. -Copyright 2013 Joshua Tacoma -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright (c) 2011 Google Inc. -Copyright (c) 2013 Joshua Tacoma -COPYRIGHT COUNTERFEIT - Promotion -Copyright d d d d (Google LLC The Go Authors)( .) - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +google.golang.org/api v0.153.0 - BSD-3-Clause + + +Copyright Google LLC. +Copyright 2011 Google LLC. +Copyright 2012 Google LLC. +Copyright 2013 Google LLC. +Copyright 2015 Google LLC. +Copyright 2016 Google LLC. +Copyright 2017 Google LLC. +Copyright 2018 Google LLC. +Copyright 2019 Google LLC. +Copyright 2020 Google LLC. +Copyright 2021 Google LLC. +Copyright 2022 Google LLC. +Copyright 2023 Google LLC. +Copyright YEAR Google LLC. +Copyright 2013 Joshua Tacoma +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright (c) 2011 Google Inc. +Copyright (c) 2013 Joshua Tacoma +COPYRIGHT COUNTERFEIT - Promotion +Copyright d d d d (Google LLC The Go Authors)( .) + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40921,18 +40921,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in/errgo.v2 v2.1.0 - BSD-3-Clause - - -Copyright 2014 Roger Peppe -Copyright (c) 2013, Roger Peppe - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in/errgo.v2 v2.1.0 - BSD-3-Clause + + +Copyright 2014 Roger Peppe +Copyright (c) 2013, Roger Peppe + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40943,24 +40943,24 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in/fsnotify.v1 v1.4.7 - BSD-3-Clause - - -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2013 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright (c) 2012 The Go Authors -Copyright (c) 2012 fsnotify Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in/fsnotify.v1 v1.4.7 - BSD-3-Clause + + +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2013 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright (c) 2012 The Go Authors +Copyright (c) 2012 fsnotify Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40971,18 +40971,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in/inf.v0 v0.9.1 - BSD-3-Clause - - -Copyright (c) 2012 Peter Suranyi -Portions Copyright (c) 2009 The Go Authors - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in/inf.v0 v0.9.1 - BSD-3-Clause + + +Copyright (c) 2012 Peter Suranyi +Portions Copyright (c) 2009 The Go Authors + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40993,18 +40993,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 - BSD-3-Clause - - -Copyright (c) 2011 - Gustavo Niemeyer -Copyright (c) 2010-2011 - Gustavo Niemeyer - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 - BSD-3-Clause + + +Copyright (c) 2011 - Gustavo Niemeyer +Copyright (c) 2010-2011 - Gustavo Niemeyer + Copyright (c) . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -41015,18 +41015,18 @@ Redistribution and use in source and binary forms, with or without modification, 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -hoist-non-react-statics 3.3.2 - BSD-3-Clause -https://github.com/mridgway/hoist-non-react-statics#readme - -Copyright 2015, Yahoo! Inc. -Copyright (c) 2015, Yahoo! Inc. - +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +hoist-non-react-statics 3.3.2 - BSD-3-Clause +https://github.com/mridgway/hoist-non-react-statics#readme + +Copyright 2015, Yahoo! Inc. +Copyright (c) 2015, Yahoo! Inc. + Software License Agreement (BSD License) ======================================== @@ -41056,19 +41056,19 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -joi 17.11.0 - BSD-3-Clause -https://github.com/hapijs/joi#readme - -Copyright (c) 2012-2014, Walmart -Copyright (c) 2012-2022, Sideway. Inc. -Copyright (c) 2012-2022, Project contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +joi 17.11.0 - BSD-3-Clause +https://github.com/hapijs/joi#readme + +Copyright (c) 2012-2014, Walmart +Copyright (c) 2012-2022, Sideway. Inc. +Copyright (c) 2012-2022, Project contributors + Copyright (c) 2012-2022, Project contributors. Copyright (c) 2012-2022, Sideway. Inc. Copyright (c) 2012-2014, Walmart. @@ -41080,21 +41080,21 @@ Redistribution and use in source and binary forms, with or without modification, * The names of any contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +qs 6.11.0 - BSD-3-Clause +https://github.com/ljharb/qs + +Copyright (c) 2014, Nathan LaFreniere and other contributors (https://github.com/ljharb/qs/graphs/contributors) + +BSD 3-Clause License - ---------------------------------------------------------- - ---------------------------------------------------------- - -qs 6.11.0 - BSD-3-Clause -https://github.com/ljharb/qs - -Copyright (c) 2014, Nathan LaFreniere and other contributors (https://github.com/ljharb/qs/graphs/contributors) - -BSD 3-Clause License - -Copyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/contributors) -All rights reserved. +Copyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/contributors) +All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -41120,18 +41120,18 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -rtl-detect 1.1.2 - BSD-3-Clause -https://github.com/shadiabuhilal/rtl-detect - -Copyright 2015 Yahoo Inc. -Copyright 2015, Yahoo! Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +rtl-detect 1.1.2 - BSD-3-Clause +https://github.com/shadiabuhilal/rtl-detect + +Copyright 2015 Yahoo Inc. +Copyright 2015, Yahoo! Inc. + Copyright 2015 Yahoo Inc. All rights reserved. @@ -41159,18 +41159,18 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -serialize-javascript 6.0.1 - BSD-3-Clause -https://github.com/yahoo/serialize-javascript - -Copyright 2014 Yahoo! Inc. -Copyright (c) 2014, Yahoo! Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +serialize-javascript 6.0.1 - BSD-3-Clause +https://github.com/yahoo/serialize-javascript + +Copyright 2014 Yahoo! Inc. +Copyright (c) 2014, Yahoo! Inc. + Copyright 2014 Yahoo! Inc. All rights reserved. @@ -41198,20 +41198,20 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -shelljs 0.8.5 - BSD-3-Clause -http://github.com/shelljs/shelljs - -Copyright (c) 2012 Artur Adib -Copyright (c) 2010 Ryan McGrath -Copyright (c) 2012, Artur Adib -Copyright (c) 2012 Artur Adib http://github.com/shelljs/shelljs - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +shelljs 0.8.5 - BSD-3-Clause +http://github.com/shelljs/shelljs + +Copyright (c) 2012 Artur Adib +Copyright (c) 2010 Ryan McGrath +Copyright (c) 2012, Artur Adib +Copyright (c) 2012 Artur Adib http://github.com/shelljs/shelljs + Copyright (c) 2012, Artur Adib All rights reserved. @@ -41238,21 +41238,21 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -source-map 0.6.1 - BSD-3-Clause -https://github.com/mozilla/source-map - -Copyright 2011 The Closure Compiler Authors -Copyright 2011 Mozilla Foundation and contributors -Copyright 2014 Mozilla Foundation and contributors -Copyright 2009-2011 Mozilla Foundation and contributors -Copyright (c) 2009-2011, Mozilla Foundation and contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +source-map 0.6.1 - BSD-3-Clause +https://github.com/mozilla/source-map + +Copyright 2011 The Closure Compiler Authors +Copyright 2011 Mozilla Foundation and contributors +Copyright 2014 Mozilla Foundation and contributors +Copyright 2009-2011 Mozilla Foundation and contributors +Copyright (c) 2009-2011, Mozilla Foundation and contributors + Copyright (c) 2009-2011, Mozilla Foundation and contributors All rights reserved. @@ -41281,21 +41281,21 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -source-map 0.7.4 - BSD-3-Clause -https://github.com/mozilla/source-map - -Copyright 2011 The Closure Compiler Authors -Copyright 2011 Mozilla Foundation and contributors -Copyright 2014 Mozilla Foundation and contributors -Copyright 2009-2011 Mozilla Foundation and contributors -Copyright (c) 2009-2011, Mozilla Foundation and contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +source-map 0.7.4 - BSD-3-Clause +https://github.com/mozilla/source-map + +Copyright 2011 The Closure Compiler Authors +Copyright 2011 Mozilla Foundation and contributors +Copyright 2014 Mozilla Foundation and contributors +Copyright 2009-2011 Mozilla Foundation and contributors +Copyright (c) 2009-2011, Mozilla Foundation and contributors + Copyright (c) 2009-2011, Mozilla Foundation and contributors All rights reserved. @@ -41324,21 +41324,21 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -source-map-js 1.0.2 - BSD-3-Clause -https://github.com/7rulnik/source-map-js - -Copyright 2011 The Closure Compiler Authors -Copyright 2011 Mozilla Foundation and contributors -Copyright 2014 Mozilla Foundation and contributors -Copyright 2009-2011 Mozilla Foundation and contributors -Copyright (c) 2009-2011, Mozilla Foundation and contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +source-map-js 1.0.2 - BSD-3-Clause +https://github.com/7rulnik/source-map-js + +Copyright 2011 The Closure Compiler Authors +Copyright 2011 Mozilla Foundation and contributors +Copyright 2014 Mozilla Foundation and contributors +Copyright 2009-2011 Mozilla Foundation and contributors +Copyright (c) 2009-2011, Mozilla Foundation and contributors + Copyright (c) 2009-2011, Mozilla Foundation and contributors All rights reserved. @@ -41367,366 +41367,366 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdaviddengcn/go-colortext v1.0.0 - BSD-3-Clause AND MIT - - -Copyright (c) 2016 David Deng -Copyright (c) 2016, David Deng - -BSD-3-Clause AND MIT - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fghodss/yaml v1.0.0 - BSD-3-Clause AND MIT - - -Copyright (c) 2014 Sam Ghods -Copyright 2013 The Go Authors -Copyright (c) 2012 The Go Authors - -BSD-3-Clause AND MIT - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fklauspost/pgzip v1.2.6 - BSD-3-Clause AND MIT - - -Copyright (c) 2014 Klaus Post -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -Copyright (c) 2012 The Go Authors - -BSD-3-Clause AND MIT - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2fx/crypto v0.21.0 - BSD-3-Clause AND OTHER - - -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2013 The Go Authors -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright 2022 The Go Authors -Copyright 2023 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright (c) 2017 The Go Authors -Copyright (c) 2019 The Go Authors -Copyright (c) 2020 The Go Authors -Copyright (c) 2021 The Go Authors - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2fx/exp v0.0.0-20231206192017-f3f8817b8deb - BSD-3-Clause AND OTHER - - -Copyright 2009 The Go Authors -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2013 The Go Authors -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright 2022 The Go Authors -Copyright 2023 The Go Authors -Copyright (c) 2009 The Go Authors - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2fx/mod v0.14.0 - BSD-3-Clause AND OTHER - - -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright (c) 2009 The Go Authors - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2fx/net v0.22.0 - BSD-3-Clause AND OTHER - - -(c) cc.fr -Copyright (c) 2009 Apple Inc. -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2013 The Go Authors -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright 2022 The Go Authors -Copyright 2023 The Go Authors -Copyright 2024 The Go Authors -Copyright (c) 2009 The Go Authors -(c) if err p.JoinGroup en0, &net.UDPAddr IP group - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2fx/sync v0.6.0 - BSD-3-Clause AND OTHER - - -Copyright 2013 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2019 The Go Authors -Copyright 2023 The Go Authors -Copyright (c) 2009 The Go Authors - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2fx/sys v0.18.0 - BSD-3-Clause AND OTHER - - -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2013 The Go Authors -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright 2022 The Go Authors -Copyright 2023 The Go Authors -Copyright 2024 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright 2009,2010 The Go Authors - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2fx/term v0.18.0 - BSD-3-Clause AND OTHER - - -Copyright 2011 The Go Authors -Copyright 2013 The Go Authors -Copyright 2019 The Go Authors -Copyright 2021 The Go Authors -Copyright (c) 2009 The Go Authors - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2Fx/text v0.14.0 - BSD-3-Clause AND OTHER - - -(c) Bv -(c) (c) A -(c) (c) AAEE -(c) AeHa (c) -(c) EAiE (c) -(c) EeAoq (c) -(c) EmeEBu (c) -(c) lEEe (c) AE -(c) aA"AE (c) 1AE -(c) oav!A (c) AY I -(c) uSSg1/2a+-N (c) OY -Copyright 2009 The Go Authors -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2013 The Go Authors -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2021 The Go Authors -Copyright (c) 2009 The Go Authors - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2Fx/time v0.5.0 - BSD-3-Clause AND OTHER - - -Copyright 2015 The Go Authors -Copyright 2022 The Go Authors -Copyright (c) 2009 The Go Authors - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2Fx/tools v0.17.0 - BSD-3-Clause AND OTHER - - -Copyright Jorn Zaefferer -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2013 The Go Authors -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 The Go Authors -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright 2022 The Go Authors -Copyright 2023 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright (c) 2017 The Go Authors -Portions Copyright (c) 2009 The Go Authors -Portions Copyright (c) 2004,2006 Bruce Ellis -Copyright (c) 1994-1999 Lucent Technologies Inc. -Portions Copyright (c) 1997-1999 Vita Nuova Limited -Copyright 2013 jQuery Foundation and other contributors -Copyright (c) 2000-2007 Lucent Technologies Inc. and others -Portions Copyright (c) 1995-1997 C H Forsyth (forsyth@terzarima.net) -Portions Copyright (c) 2005-2007 C H Forsyth (forsyth@terzarima.net) -Portions Copyright (c) 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com) - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.org%2Fx/xerrors v0.0.0-20220907171357-04be3eba64a2 - BSD-3-Clause AND OTHER - - -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright (c) 2019 The Go Authors - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -google.golang.org/protobuf v1.33.0 - BSD-3-Clause AND OTHER - - -Copyright 2008 Google Inc. -Copyright 2023 Google Inc. -Copyright d d d d Google Inc -Copyright 2018 The Go Authors -Copyright 2019 The Go Authors -Copyright 2020 The Go Authors -Copyright 2021 The Go Authors -Copyright 2022 The Go Authors -Copyright 2023 The Go Authors -Copyright 2024 The Go Authors -Copyright d d d d The Go Authors -Copyright (c) 2018 The Go Authors - -BSD-3-Clause AND OTHER - ---------------------------------------------------------- - ---------------------------------------------------------- - -node-forge 1.3.1 - BSD-3-Clause OR GPL-2.0 OR (BSD-3-Clause AND GPL-2.0) -https://github.com/digitalbazaar/forge - -(c) 2016 Permission -Copyright (c) 2005 Tom Wu -Copyright (c) 2003-2005 Tom Wu -Copyright (c) 2005-2009 Tom Wu -Copyright (c) 2012 Kenji Urushima -Copyright (c) 2013 Digital Bazaar, Inc. -Copyright (c) 2014 Digital Bazaar, Inc. -Copyright (c) 2019 Digital Bazaar, Inc. -Copyright (c) 2010, Digital Bazaar, Inc. -Copyright 2011-2016 Digital Bazaar, Inc. -Copyright 2011-2017 Digital Bazaar, Inc. -copyrighted by the Free Software Foundation -Copyright (c) 2008-2013 Digital Bazaar, Inc. -Copyright (c) 2009-2012 Digital Bazaar, Inc. -Copyright (c) 2009-2014 Digital Bazaar, Inc. -Copyright (c) 2009-2015 Digital Bazaar, Inc. -Copyright (c) 2010-2012 Digital Bazaar, Inc. -Copyright (c) 2010-2013 Digital Bazaar, Inc. -Copyright (c) 2010-2014 Digital Bazaar, Inc. -Copyright (c) 2010-2015 Digital Bazaar, Inc. -Copyright (c) 2010-2018 Digital Bazaar, Inc. -Copyright (c) 2011-2014 Digital Bazaar, Inc. -Copyright (c) 2012-2014 Digital Bazaar, Inc. -Copyright (c) 2012-2015 Digital Bazaar, Inc. -Copyright (c) 2013-2014 Digital Bazaar, Inc. -Copyright (c) 2014-2015 Digital Bazaar, Inc. -Copyright (c) 2017-2019 Digital Bazaar, Inc. -Copyright 2012 Stefan Siegl -Copyright (c) 2012 Stefan Siegl -Copyright (c) Ellis Pritchard, Guardian Unlimited 2003 -Copyright (c) 1989, 1991 Free Software Foundation, Inc. -Copyright (c) 2014 Lautaro Cozzani - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdaviddengcn/go-colortext v1.0.0 - BSD-3-Clause AND MIT + + +Copyright (c) 2016 David Deng +Copyright (c) 2016, David Deng + +BSD-3-Clause AND MIT + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fghodss/yaml v1.0.0 - BSD-3-Clause AND MIT + + +Copyright (c) 2014 Sam Ghods +Copyright 2013 The Go Authors +Copyright (c) 2012 The Go Authors + +BSD-3-Clause AND MIT + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fklauspost/pgzip v1.2.6 - BSD-3-Clause AND MIT + + +Copyright (c) 2014 Klaus Post +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +Copyright (c) 2012 The Go Authors + +BSD-3-Clause AND MIT + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2fx/crypto v0.21.0 - BSD-3-Clause AND OTHER + + +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2013 The Go Authors +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright 2022 The Go Authors +Copyright 2023 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright (c) 2017 The Go Authors +Copyright (c) 2019 The Go Authors +Copyright (c) 2020 The Go Authors +Copyright (c) 2021 The Go Authors + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2fx/exp v0.0.0-20231206192017-f3f8817b8deb - BSD-3-Clause AND OTHER + + +Copyright 2009 The Go Authors +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2013 The Go Authors +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright 2022 The Go Authors +Copyright 2023 The Go Authors +Copyright (c) 2009 The Go Authors + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2fx/mod v0.14.0 - BSD-3-Clause AND OTHER + + +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright (c) 2009 The Go Authors + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2fx/net v0.22.0 - BSD-3-Clause AND OTHER + + +(c) cc.fr +Copyright (c) 2009 Apple Inc. +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2013 The Go Authors +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright 2022 The Go Authors +Copyright 2023 The Go Authors +Copyright 2024 The Go Authors +Copyright (c) 2009 The Go Authors +(c) if err p.JoinGroup en0, &net.UDPAddr IP group + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2fx/sync v0.6.0 - BSD-3-Clause AND OTHER + + +Copyright 2013 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2019 The Go Authors +Copyright 2023 The Go Authors +Copyright (c) 2009 The Go Authors + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2fx/sys v0.18.0 - BSD-3-Clause AND OTHER + + +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2013 The Go Authors +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright 2022 The Go Authors +Copyright 2023 The Go Authors +Copyright 2024 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright 2009,2010 The Go Authors + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2fx/term v0.18.0 - BSD-3-Clause AND OTHER + + +Copyright 2011 The Go Authors +Copyright 2013 The Go Authors +Copyright 2019 The Go Authors +Copyright 2021 The Go Authors +Copyright (c) 2009 The Go Authors + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2Fx/text v0.14.0 - BSD-3-Clause AND OTHER + + +(c) Bv +(c) (c) A +(c) (c) AAEE +(c) AeHa (c) +(c) EAiE (c) +(c) EeAoq (c) +(c) EmeEBu (c) +(c) lEEe (c) AE +(c) aA"AE (c) 1AE +(c) oav!A (c) AY I +(c) uSSg1/2a+-N (c) OY +Copyright 2009 The Go Authors +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2013 The Go Authors +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2021 The Go Authors +Copyright (c) 2009 The Go Authors + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2Fx/time v0.5.0 - BSD-3-Clause AND OTHER + + +Copyright 2015 The Go Authors +Copyright 2022 The Go Authors +Copyright (c) 2009 The Go Authors + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2Fx/tools v0.17.0 - BSD-3-Clause AND OTHER + + +Copyright Jorn Zaefferer +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2013 The Go Authors +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 The Go Authors +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright 2022 The Go Authors +Copyright 2023 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright (c) 2017 The Go Authors +Portions Copyright (c) 2009 The Go Authors +Portions Copyright (c) 2004,2006 Bruce Ellis +Copyright (c) 1994-1999 Lucent Technologies Inc. +Portions Copyright (c) 1997-1999 Vita Nuova Limited +Copyright 2013 jQuery Foundation and other contributors +Copyright (c) 2000-2007 Lucent Technologies Inc. and others +Portions Copyright (c) 1995-1997 C H Forsyth (forsyth@terzarima.net) +Portions Copyright (c) 2005-2007 C H Forsyth (forsyth@terzarima.net) +Portions Copyright (c) 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com) + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.org%2Fx/xerrors v0.0.0-20220907171357-04be3eba64a2 - BSD-3-Clause AND OTHER + + +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright (c) 2019 The Go Authors + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +google.golang.org/protobuf v1.33.0 - BSD-3-Clause AND OTHER + + +Copyright 2008 Google Inc. +Copyright 2023 Google Inc. +Copyright d d d d Google Inc +Copyright 2018 The Go Authors +Copyright 2019 The Go Authors +Copyright 2020 The Go Authors +Copyright 2021 The Go Authors +Copyright 2022 The Go Authors +Copyright 2023 The Go Authors +Copyright 2024 The Go Authors +Copyright d d d d The Go Authors +Copyright (c) 2018 The Go Authors + +BSD-3-Clause AND OTHER + +--------------------------------------------------------- + +--------------------------------------------------------- + +node-forge 1.3.1 - BSD-3-Clause OR GPL-2.0 OR (BSD-3-Clause AND GPL-2.0) +https://github.com/digitalbazaar/forge + +(c) 2016 Permission +Copyright (c) 2005 Tom Wu +Copyright (c) 2003-2005 Tom Wu +Copyright (c) 2005-2009 Tom Wu +Copyright (c) 2012 Kenji Urushima +Copyright (c) 2013 Digital Bazaar, Inc. +Copyright (c) 2014 Digital Bazaar, Inc. +Copyright (c) 2019 Digital Bazaar, Inc. +Copyright (c) 2010, Digital Bazaar, Inc. +Copyright 2011-2016 Digital Bazaar, Inc. +Copyright 2011-2017 Digital Bazaar, Inc. +copyrighted by the Free Software Foundation +Copyright (c) 2008-2013 Digital Bazaar, Inc. +Copyright (c) 2009-2012 Digital Bazaar, Inc. +Copyright (c) 2009-2014 Digital Bazaar, Inc. +Copyright (c) 2009-2015 Digital Bazaar, Inc. +Copyright (c) 2010-2012 Digital Bazaar, Inc. +Copyright (c) 2010-2013 Digital Bazaar, Inc. +Copyright (c) 2010-2014 Digital Bazaar, Inc. +Copyright (c) 2010-2015 Digital Bazaar, Inc. +Copyright (c) 2010-2018 Digital Bazaar, Inc. +Copyright (c) 2011-2014 Digital Bazaar, Inc. +Copyright (c) 2012-2014 Digital Bazaar, Inc. +Copyright (c) 2012-2015 Digital Bazaar, Inc. +Copyright (c) 2013-2014 Digital Bazaar, Inc. +Copyright (c) 2014-2015 Digital Bazaar, Inc. +Copyright (c) 2017-2019 Digital Bazaar, Inc. +Copyright 2012 Stefan Siegl +Copyright (c) 2012 Stefan Siegl +Copyright (c) Ellis Pritchard, Guardian Unlimited 2003 +Copyright (c) 1989, 1991 Free Software Foundation, Inc. +Copyright (c) 2014 Lautaro Cozzani + You may use the Forge project under the terms of either the BSD License or the GNU General Public License (GPL) Version 2. @@ -42058,16 +42058,16 @@ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fpascaldekloe/goe v0.1.0 - CC0-1.0 - - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fpascaldekloe/goe v0.1.0 - CC0-1.0 + + + Creative Commons Legal Code CC0 1.0 Universal CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER. @@ -42108,16 +42108,16 @@ For these and/or other purposes and motivations, and without any expectation of c. Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. - d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdn-data 2.0.14 - CC0-1.0 -https://developer.mozilla.org/ - - + d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdn-data 2.0.14 - CC0-1.0 +https://developer.mozilla.org/ + + CC0 1.0 Universal Statement of Purpose @@ -42234,26 +42234,26 @@ Affirmer's express Statement of Purpose. For more information, please see - - ---------------------------------------------------------- - ---------------------------------------------------------- - -type-fest 2.19.0 - CC0-1.0 OR MIT OR (CC0-1.0 AND MIT) -https://github.com/sindresorhus/type-fest#readme - - -CC0-1.0 OR MIT OR (CC0-1.0 AND MIT) - ---------------------------------------------------------- - ---------------------------------------------------------- - -caniuse-lite 1.0.30001571 - CC-BY-4.0 -https://github.com/browserslist/caniuse-lite#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +type-fest 2.19.0 - CC0-1.0 OR MIT OR (CC0-1.0 AND MIT) +https://github.com/sindresorhus/type-fest#readme + + +CC0-1.0 OR MIT OR (CC0-1.0 AND MIT) + +--------------------------------------------------------- + +--------------------------------------------------------- + +caniuse-lite 1.0.30001571 - CC-BY-4.0 +https://github.com/browserslist/caniuse-lite#readme + + Attribution 4.0 International ======================================================================= @@ -42649,17 +42649,17 @@ the avoidance of doubt, this paragraph does not form part of the public licenses. Creative Commons may be contacted at creativecommons.org. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@trysound/sax 0.2.0 - ISC -https://github.com/svg/sax#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@trysound/sax 0.2.0 - ISC +https://github.com/svg/sax#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -42675,18 +42675,18 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@ungap/structured-clone 1.2.0 - ISC -https://github.com/ungap/structured-clone#readme - -(c) Andrea Giammarchi -Copyright (c) 2021, Andrea Giammarchi - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@ungap/structured-clone 1.2.0 - ISC +https://github.com/ungap/structured-clone#readme + +(c) Andrea Giammarchi +Copyright (c) 2021, Andrea Giammarchi + ISC License Copyright (c) 2021, Andrea Giammarchi, @WebReflection @@ -42702,17 +42702,17 @@ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ansi-align 3.0.1 - ISC -https://github.com/nexdrew/ansi-align#readme - -Copyright (c) 2016, Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ansi-align 3.0.1 - ISC +https://github.com/nexdrew/ansi-align#readme + +Copyright (c) 2016, Contributors + Copyright (c) 2016, Contributors Permission to use, copy, modify, and/or distribute this software for any purpose @@ -42726,17 +42726,17 @@ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -anymatch 3.1.3 - ISC -https://github.com/micromatch/anymatch - -Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +anymatch 3.1.3 - ISC +https://github.com/micromatch/anymatch + +Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com) + The ISC License Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com) @@ -42752,33 +42752,33 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -at-least-node 1.0.0 - ISC -https://github.com/RyanZim/at-least-node#readme - -Copyright (c) 2020 Ryan Zimmerman - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +at-least-node 1.0.0 - ISC +https://github.com/RyanZim/at-least-node#readme + +Copyright (c) 2020 Ryan Zimmerman + The ISC License Copyright (c) 2020 Ryan Zimmerman Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -boolbase 1.0.0 - ISC -https://github.com/fb55/boolbase - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +boolbase 1.0.0 - ISC +https://github.com/fb55/boolbase + + ISC License Copyright (c) 2004-2010 by Internet Systems Consortium, Inc. ("ISC") @@ -42787,17 +42787,17 @@ Copyright (c) 1995-2003 by Internet Software Consortium Permission to use, copy, modify, and /or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. -THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -common-path-prefix 3.0.0 - ISC -https://github.com/novemberborn/common-path-prefix#readme - -Copyright (c) 2016, Mark Wubben - +THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +common-path-prefix 3.0.0 - ISC +https://github.com/novemberborn/common-path-prefix#readme + +Copyright (c) 2016, Mark Wubben + ISC License (ISC) Copyright (c) 2016, Mark Wubben @@ -42812,16 +42812,16 @@ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -css-declaration-sorter 6.4.1 - ISC -https://github.com/Siilwyn/css-declaration-sorter#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +css-declaration-sorter 6.4.1 - ISC +https://github.com/Siilwyn/css-declaration-sorter#readme + + ISC License Copyright (c) @@ -42837,33 +42837,33 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -electron-to-chromium 1.4.616 - ISC -https://github.com/kilian/electron-to-chromium#readme - -Copyright 2018 Kilian Valkhof - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +electron-to-chromium 1.4.616 - ISC +https://github.com/kilian/electron-to-chromium#readme + +Copyright 2018 Kilian Valkhof + Copyright 2018 Kilian Valkhof Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fastq 1.16.0 - ISC -https://github.com/mcollina/fastq#readme - -Copyright (c) 2015-2020, Matteo Collina - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fastq 1.16.0 - ISC +https://github.com/mcollina/fastq#readme + +Copyright (c) 2015-2020, Matteo Collina + Copyright (c) 2015-2020, Matteo Collina Permission to use, copy, modify, and/or distribute this software for any @@ -42877,18 +42877,18 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fs.realpath 1.0.0 - ISC -https://github.com/isaacs/fs.realpath#readme - -Copyright (c) Isaac Z. Schlueter and Contributors -Copyright Joyent, Inc. and other Node contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fs.realpath 1.0.0 - ISC +https://github.com/isaacs/fs.realpath#readme + +Copyright (c) Isaac Z. Schlueter and Contributors +Copyright Joyent, Inc. and other Node contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -42932,17 +42932,17 @@ the licensed code: 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -get-own-enumerable-property-symbols 3.0.2 - ISC -https://github.com/mightyiam/get-own-enumerable-property-symbols#readme - -Copyright (c) 2019, Shahar Or - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +get-own-enumerable-property-symbols 3.0.2 - ISC +https://github.com/mightyiam/get-own-enumerable-property-symbols#readme + +Copyright (c) 2019, Shahar Or + Copyright (c) 2019, Shahar Or Permission to use, copy, modify, and/or distribute this software for any purpose @@ -42955,20 +42955,20 @@ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF -THIS SOFTWARE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdavecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc - ISC - - -Copyright (c) 2013 Dave Collins -Copyright (c) 2012-2016 Dave Collins -Copyright (c) 2013-2016 Dave Collins -Copyright (c) 2015-2016 Dave Collins - +THIS SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdavecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc - ISC + + +Copyright (c) 2013 Dave Collins +Copyright (c) 2012-2016 Dave Collins +Copyright (c) 2013-2016 Dave Collins +Copyright (c) 2015-2016 Dave Collins + ISC License Copyright (c) 2004-2010 by Internet Systems Consortium, Inc. ("ISC") @@ -42977,38 +42977,38 @@ Copyright (c) 1995-2003 by Internet Software Consortium Permission to use, copy, modify, and /or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. -THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdecred%2Fdcrd%2Fdcrec%2Fsecp256k1/v4 v4.2.0 - ISC - - -Copyright 2015 The btcsuite -Copyright (c) 2014 The btcsuite -Copyright (c) 2015 The btcsuite -Copyright 2013-2014 The btcsuite -Copyright 2013-2016 The btcsuite -Copyright (c) 2013-2014 The btcsuite -Copyright (c) 2013-2016 The btcsuite -Copyright (c) 2013-2017 The btcsuite -Copyright (c) 2013-2022 Dave Collins -Copyright (c) 2015-2016 The btcsuite -Copyright (c) 2017 The Lightning Network -Copyright (c) 2020 The Decred developers -Copyright (c) 2022 The Decred developers -Copyright (c) 2014 Conformal Systems LLC. -Copyright 2020-2022 The Decred developers -Copyright (c) 2015-2017 The Decred developers -Copyright (c) 2015-2020 The Decred developers -Copyright (c) 2015-2021 The Decred developers -Copyright (c) 2015-2022 The Decred developers -Copyright (c) 2015-2023 The Decred developers -Copyright (c) 2020-2021 The Decred developers -Copyright (c) 2020-2022 The Decred developers - +THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdecred%2Fdcrd%2Fdcrec%2Fsecp256k1/v4 v4.2.0 - ISC + + +Copyright 2015 The btcsuite +Copyright (c) 2014 The btcsuite +Copyright (c) 2015 The btcsuite +Copyright 2013-2014 The btcsuite +Copyright 2013-2016 The btcsuite +Copyright (c) 2013-2014 The btcsuite +Copyright (c) 2013-2016 The btcsuite +Copyright (c) 2013-2017 The btcsuite +Copyright (c) 2013-2022 Dave Collins +Copyright (c) 2015-2016 The btcsuite +Copyright (c) 2017 The Lightning Network +Copyright (c) 2020 The Decred developers +Copyright (c) 2022 The Decred developers +Copyright (c) 2014 Conformal Systems LLC. +Copyright 2020-2022 The Decred developers +Copyright (c) 2015-2017 The Decred developers +Copyright (c) 2015-2020 The Decred developers +Copyright (c) 2015-2021 The Decred developers +Copyright (c) 2015-2022 The Decred developers +Copyright (c) 2015-2023 The Decred developers +Copyright (c) 2020-2021 The Decred developers +Copyright (c) 2020-2022 The Decred developers + ISC License Copyright (c) 2004-2010 by Internet Systems Consortium, Inc. ("ISC") @@ -43017,33 +43017,33 @@ Copyright (c) 1995-2003 by Internet Software Consortium Permission to use, copy, modify, and /or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. -THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github-slugger 1.5.0 - ISC -https://github.com/Flet/github-slugger - -Copyright (c) 2015, Dan Flettre - +THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github-slugger 1.5.0 - ISC +https://github.com/Flet/github-slugger + +Copyright (c) 2015, Dan Flettre + Copyright (c) 2015, Dan Flettre Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -glob 7.2.3 - ISC -https://github.com/isaacs/node-glob#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +glob 7.2.3 - ISC +https://github.com/isaacs/node-glob#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43065,17 +43065,17 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. Glob's logo created by Tanya Brassie , licensed under a Creative Commons Attribution-ShareAlike 4.0 International License https://creativecommons.org/licenses/by-sa/4.0/ - - ---------------------------------------------------------- - ---------------------------------------------------------- - -glob-parent 5.1.2 - ISC -https://github.com/gulpjs/glob-parent#readme - -Copyright (c) 2015, 2019 Elan Shanker - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +glob-parent 5.1.2 - ISC +https://github.com/gulpjs/glob-parent#readme + +Copyright (c) 2015, 2019 Elan Shanker + The ISC License Copyright (c) 2015, 2019 Elan Shanker @@ -43091,17 +43091,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -glob-parent 6.0.2 - ISC -https://github.com/gulpjs/glob-parent#readme - -Copyright (c) 2015, 2019 Elan Shanker, 2021 Blaine Bublitz , Eric Schoffstall and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +glob-parent 6.0.2 - ISC +https://github.com/gulpjs/glob-parent#readme + +Copyright (c) 2015, 2019 Elan Shanker, 2021 Blaine Bublitz , Eric Schoffstall and other contributors + The ISC License Copyright (c) 2015, 2019 Elan Shanker, 2021 Blaine Bublitz , Eric Schoffstall and other contributors @@ -43117,17 +43117,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -graceful-fs 4.2.10 - ISC -https://github.com/isaacs/node-graceful-fs#readme - -Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +graceful-fs 4.2.10 - ISC +https://github.com/isaacs/node-graceful-fs#readme + +Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors + The ISC License Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors @@ -43143,17 +43143,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -graceful-fs 4.2.11 - ISC -https://github.com/isaacs/node-graceful-fs#readme - -Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +graceful-fs 4.2.11 - ISC +https://github.com/isaacs/node-graceful-fs#readme + +Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors + The ISC License Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors @@ -43169,34 +43169,34 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -icss-utils 5.1.0 - ISC -https://github.com/css-modules/icss-utils#readme - -Copyright 2018 Glen Maddern - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +icss-utils 5.1.0 - ISC +https://github.com/css-modules/icss-utils#readme + +Copyright 2018 Glen Maddern + ISC License (ISC) Copyright 2018 Glen Maddern Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -inflight 1.0.6 - ISC -https://github.com/isaacs/inflight - -Copyright (c) Isaac Z. Schlueter - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +inflight 1.0.6 - ISC +https://github.com/isaacs/inflight + +Copyright (c) Isaac Z. Schlueter + The ISC License Copyright (c) Isaac Z. Schlueter @@ -43212,17 +43212,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -inherits 2.0.4 - ISC -https://github.com/isaacs/inherits#readme - -Copyright (c) Isaac Z. Schlueter - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +inherits 2.0.4 - ISC +https://github.com/isaacs/inherits#readme + +Copyright (c) Isaac Z. Schlueter + The ISC License Copyright (c) Isaac Z. Schlueter @@ -43239,17 +43239,17 @@ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ini 1.3.8 - ISC -https://github.com/isaacs/ini#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ini 1.3.8 - ISC +https://github.com/isaacs/ini#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43265,17 +43265,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ini 2.0.0 - ISC -https://github.com/isaacs/ini#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ini 2.0.0 - ISC +https://github.com/isaacs/ini#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43291,17 +43291,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -isexe 2.0.0 - ISC -https://github.com/isaacs/isexe#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +isexe 2.0.0 - ISC +https://github.com/isaacs/isexe#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43317,17 +43317,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -lru-cache 5.1.1 - ISC -https://github.com/isaacs/node-lru-cache#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +lru-cache 5.1.1 - ISC +https://github.com/isaacs/node-lru-cache#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43343,17 +43343,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -lru-cache 6.0.0 - ISC -https://github.com/isaacs/node-lru-cache#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +lru-cache 6.0.0 - ISC +https://github.com/isaacs/node-lru-cache#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43369,17 +43369,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -minimalistic-assert 1.0.1 - ISC -https://github.com/calvinmetcalf/minimalistic-assert - -Copyright 2015 Calvin Metcalf - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +minimalistic-assert 1.0.1 - ISC +https://github.com/calvinmetcalf/minimalistic-assert + +Copyright 2015 Calvin Metcalf + Copyright 2015 Calvin Metcalf Permission to use, copy, modify, and/or distribute this software for any purpose @@ -43392,17 +43392,17 @@ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -minimatch 3.1.2 - ISC -https://github.com/isaacs/minimatch#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - +PERFORMANCE OF THIS SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +minimatch 3.1.2 - ISC +https://github.com/isaacs/minimatch#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43418,17 +43418,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -once 1.4.0 - ISC -https://github.com/isaacs/once#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +once 1.4.0 - ISC +https://github.com/isaacs/once#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43444,17 +43444,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -parse-numeric-range 1.3.0 - ISC -https://github.com/euank/node-parse-numeric-range - -Copyright (c) 2014, Euank - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +parse-numeric-range 1.3.0 - ISC +https://github.com/euank/node-parse-numeric-range + +Copyright (c) 2014, Euank + Copyright (c) 2014, Euank Permission to use, copy, modify, and/or distribute this software for any @@ -43468,17 +43468,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -picocolors 1.0.0 - ISC -https://github.com/alexeyraspopov/picocolors#readme - -Copyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +picocolors 1.0.0 - ISC +https://github.com/alexeyraspopov/picocolors#readme + +Copyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov + ISC License Copyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov @@ -43494,33 +43494,33 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-modules-extract-imports 3.0.0 - ISC -https://github.com/css-modules/postcss-modules-extract-imports - -Copyright 2015 Glen Maddern - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-modules-extract-imports 3.0.0 - ISC +https://github.com/css-modules/postcss-modules-extract-imports + +Copyright 2015 Glen Maddern + Copyright 2015 Glen Maddern Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-modules-scope 3.1.0 - ISC -https://github.com/css-modules/postcss-modules-scope - -Copyright (c) 2015, Glen Maddern - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-modules-scope 3.1.0 - ISC +https://github.com/css-modules/postcss-modules-scope + +Copyright (c) 2015, Glen Maddern + ISC License (ISC) Copyright (c) 2015, Glen Maddern @@ -43528,34 +43528,34 @@ Copyright (c) 2015, Glen Maddern Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-modules-values 4.0.0 - ISC -https://github.com/css-modules/postcss-modules-values#readme - -Copyright (c) 2015, Glen Maddern - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-modules-values 4.0.0 - ISC +https://github.com/css-modules/postcss-modules-values#readme + +Copyright (c) 2015, Glen Maddern + ISC License (ISC) Copyright (c) 2015, Glen Maddern Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - ---------------------------------------------------------- - ---------------------------------------------------------- - -proto-list 1.2.4 - ISC -https://github.com/isaacs/proto-list#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +proto-list 1.2.4 - ISC +https://github.com/isaacs/proto-list#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43571,17 +43571,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -rimraf 3.0.2 - ISC -https://github.com/isaacs/rimraf#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +rimraf 3.0.2 - ISC +https://github.com/isaacs/rimraf#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43597,18 +43597,18 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -sax 1.3.0 - ISC -https://github.com/isaacs/sax-js#readme - -Copyright (c) 2010-2022 Isaac Z. Schlueter and Contributors -Copyright (c) 2010-2022 Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +sax 1.3.0 - ISC +https://github.com/isaacs/sax-js#readme + +Copyright (c) 2010-2022 Isaac Z. Schlueter and Contributors +Copyright (c) 2010-2022 Mathias Bynens + The ISC License Copyright (c) 2010-2022 Isaac Z. Schlueter and Contributors @@ -43650,19 +43650,19 @@ Copyright (c) 2010-2022 Mathias Bynens 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -semver 6.3.1 - ISC -https://github.com/npm/node-semver#readme - -Copyright Isaac Z. -Copyright Isaac Z. Schlueter -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +semver 6.3.1 - ISC +https://github.com/npm/node-semver#readme + +Copyright Isaac Z. +Copyright Isaac Z. Schlueter +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43678,18 +43678,18 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -semver 7.5.4 - ISC -https://github.com/npm/node-semver#readme - -Copyright Isaac Z. Schlueter -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +semver 7.5.4 - ISC +https://github.com/npm/node-semver#readme + +Copyright Isaac Z. Schlueter +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43705,17 +43705,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -setprototypeof 1.2.0 - ISC -https://github.com/wesleytodd/setprototypeof - -Copyright (c) 2015, Wes Todd - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +setprototypeof 1.2.0 - ISC +https://github.com/wesleytodd/setprototypeof + +Copyright (c) 2015, Wes Todd + Copyright (c) 2015, Wes Todd Permission to use, copy, modify, and/or distribute this software for any @@ -43729,17 +43729,17 @@ SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -signal-exit 3.0.7 - ISC -https://github.com/tapjs/signal-exit - -Copyright (c) 2015, Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +signal-exit 3.0.7 - ISC +https://github.com/tapjs/signal-exit + +Copyright (c) 2015, Contributors + The ISC License Copyright (c) 2015, Contributors @@ -43756,17 +43756,17 @@ LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -which 1.3.1 - ISC -https://github.com/isaacs/node-which#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +which 1.3.1 - ISC +https://github.com/isaacs/node-which#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43782,17 +43782,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -which 2.0.2 - ISC -https://github.com/isaacs/node-which#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +which 2.0.2 - ISC +https://github.com/isaacs/node-which#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43808,17 +43808,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -wrappy 1.0.2 - ISC -https://github.com/npm/wrappy - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +wrappy 1.0.2 - ISC +https://github.com/npm/wrappy + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43834,34 +43834,34 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -write-file-atomic 3.0.3 - ISC -https://github.com/npm/write-file-atomic - -Copyright (c) 2015, Rebecca Turner - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +write-file-atomic 3.0.3 - ISC +https://github.com/npm/write-file-atomic + +Copyright (c) 2015, Rebecca Turner + Copyright (c) 2015, Rebecca Turner Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -yallist 3.1.1 - ISC -https://github.com/isaacs/yallist#readme - -Copyright (c) Isaac Z. Schlueter and Contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +yallist 3.1.1 - ISC +https://github.com/isaacs/yallist#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + The ISC License Copyright (c) Isaac Z. Schlueter and Contributors @@ -43877,17 +43877,17 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -yaml 1.10.2 - ISC -https://eemeli.org/yaml/v1/ - -Copyright 2018 Eemeli Aro - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +yaml 1.10.2 - ISC +https://eemeli.org/yaml/v1/ + +Copyright 2018 Eemeli Aro + Copyright 2018 Eemeli Aro Permission to use, copy, modify, and/or distribute this software for any purpose @@ -43901,17 +43901,17 @@ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/autocomplete-core 1.9.3 - MIT -https://github.com/algolia/autocomplete - -(c) Algolia, Inc. and contributors https://github.com/algolia/autocomplete - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/autocomplete-core 1.9.3 - MIT +https://github.com/algolia/autocomplete + +(c) Algolia, Inc. and contributors https://github.com/algolia/autocomplete + MIT License Copyright (c) @@ -43920,17 +43920,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/autocomplete-plugin-algolia-insights 1.9.3 - MIT -https://github.com/algolia/autocomplete - -(c) Algolia, Inc. and contributors https://github.com/algolia/autocomplete - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/autocomplete-plugin-algolia-insights 1.9.3 - MIT +https://github.com/algolia/autocomplete + +(c) Algolia, Inc. and contributors https://github.com/algolia/autocomplete + MIT License Copyright (c) @@ -43939,17 +43939,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/autocomplete-preset-algolia 1.9.3 - MIT -https://github.com/algolia/autocomplete - -(c) Algolia, Inc. and contributors https://github.com/algolia/autocomplete - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/autocomplete-preset-algolia 1.9.3 - MIT +https://github.com/algolia/autocomplete + +(c) Algolia, Inc. and contributors https://github.com/algolia/autocomplete + MIT License Copyright (c) @@ -43958,16 +43958,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/autocomplete-shared 1.9.3 - MIT -https://github.com/algolia/autocomplete - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/autocomplete-shared 1.9.3 - MIT +https://github.com/algolia/autocomplete + + MIT License Copyright (c) @@ -43976,16 +43976,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/cache-browser-local-storage 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/cache-browser-local-storage 4.22.0 - MIT + + + MIT License Copyright (c) @@ -43994,16 +43994,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/cache-common 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/cache-common 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44012,16 +44012,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/cache-in-memory 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/cache-in-memory 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44030,16 +44030,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/client-account 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/client-account 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44048,16 +44048,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/client-analytics 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/client-analytics 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44066,16 +44066,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/client-common 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/client-common 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44084,16 +44084,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/client-personalization 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/client-personalization 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44102,16 +44102,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/client-search 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/client-search 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44120,17 +44120,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/events 4.0.1 - MIT -https://github.com/algolia/events#readme - -Copyright Joyent, Inc. and other Node contributors - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/events 4.0.1 - MIT +https://github.com/algolia/events#readme + +Copyright Joyent, Inc. and other Node contributors + MIT Copyright Joyent, Inc. and other Node contributors. @@ -44153,16 +44153,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/logger-common 4.22.0 - MIT - - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/logger-common 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44171,16 +44171,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/logger-console 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/logger-console 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44189,16 +44189,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/requester-browser-xhr 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/requester-browser-xhr 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44207,16 +44207,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/requester-common 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/requester-common 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44225,16 +44225,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/requester-node-http 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/requester-node-http 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44243,16 +44243,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@algolia/transporter 4.22.0 - MIT - - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@algolia/transporter 4.22.0 - MIT + + + MIT License Copyright (c) @@ -44261,17 +44261,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/code-frame 7.23.5 - MIT -https://babel.dev/docs/en/next/babel-code-frame - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/code-frame 7.23.5 - MIT +https://babel.dev/docs/en/next/babel-code-frame + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44294,17 +44294,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/compat-data 7.23.5 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/compat-data 7.23.5 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44327,19 +44327,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/core 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-core - -Copyright (c) 2021 Titus Wormer -Copyright Joyent, Inc. and other Node contributors -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/core 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-core + +Copyright (c) 2021 Titus Wormer +Copyright Joyent, Inc. and other Node contributors +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44362,17 +44362,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/generator 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-generator - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/generator 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-generator + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44395,17 +44395,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-annotate-as-pure 7.22.5 - MIT -https://babel.dev/docs/en/next/babel-helper-annotate-as-pure - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-annotate-as-pure 7.22.5 - MIT +https://babel.dev/docs/en/next/babel-helper-annotate-as-pure + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44428,17 +44428,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-builder-binary-assignment-operator-visitor 7.22.15 - MIT -https://babel.dev/docs/en/next/babel-helper-builder-binary-assignment-operator-visitor - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-builder-binary-assignment-operator-visitor 7.22.15 - MIT +https://babel.dev/docs/en/next/babel-helper-builder-binary-assignment-operator-visitor + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44461,17 +44461,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-compilation-targets 7.23.6 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-compilation-targets 7.23.6 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44494,17 +44494,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-create-class-features-plugin 7.23.6 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-create-class-features-plugin 7.23.6 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44527,17 +44527,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-create-regexp-features-plugin 7.22.15 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-create-regexp-features-plugin 7.22.15 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44560,17 +44560,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-define-polyfill-provider 0.4.4 - MIT -https://github.com/babel/babel-polyfills#readme - -Copyright (c) 2014-present Nicolo Ribaudo and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-define-polyfill-provider 0.4.4 - MIT +https://github.com/babel/babel-polyfills#readme + +Copyright (c) 2014-present Nicolo Ribaudo and other contributors + MIT License Copyright (c) 2014-present Nicolò Ribaudo and other contributors @@ -44593,17 +44593,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-environment-visitor 7.22.20 - MIT -https://babel.dev/docs/en/next/babel-helper-environment-visitor - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-environment-visitor 7.22.20 - MIT +https://babel.dev/docs/en/next/babel-helper-environment-visitor + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44626,17 +44626,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-function-name 7.23.0 - MIT -https://babel.dev/docs/en/next/babel-helper-function-name - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-function-name 7.23.0 - MIT +https://babel.dev/docs/en/next/babel-helper-function-name + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44659,17 +44659,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-hoist-variables 7.22.5 - MIT -https://babel.dev/docs/en/next/babel-helper-hoist-variables - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-hoist-variables 7.22.5 - MIT +https://babel.dev/docs/en/next/babel-helper-hoist-variables + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44692,17 +44692,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-member-expression-to-functions 7.23.0 - MIT -https://babel.dev/docs/en/next/babel-helper-member-expression-to-functions - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-member-expression-to-functions 7.23.0 - MIT +https://babel.dev/docs/en/next/babel-helper-member-expression-to-functions + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44725,17 +44725,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-module-imports 7.22.15 - MIT -https://babel.dev/docs/en/next/babel-helper-module-imports - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-module-imports 7.22.15 - MIT +https://babel.dev/docs/en/next/babel-helper-module-imports + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44758,17 +44758,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-module-transforms 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-helper-module-transforms - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-module-transforms 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-helper-module-transforms + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44791,17 +44791,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-optimise-call-expression 7.22.5 - MIT -https://babel.dev/docs/en/next/babel-helper-optimise-call-expression - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-optimise-call-expression 7.22.5 - MIT +https://babel.dev/docs/en/next/babel-helper-optimise-call-expression + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44824,17 +44824,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-plugin-utils 7.22.5 - MIT -https://babel.dev/docs/en/next/babel-helper-plugin-utils - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-plugin-utils 7.22.5 - MIT +https://babel.dev/docs/en/next/babel-helper-plugin-utils + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44857,17 +44857,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-remap-async-to-generator 7.22.20 - MIT -https://babel.dev/docs/en/next/babel-helper-remap-async-to-generator - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-remap-async-to-generator 7.22.20 - MIT +https://babel.dev/docs/en/next/babel-helper-remap-async-to-generator + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44890,17 +44890,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-replace-supers 7.22.20 - MIT -https://babel.dev/docs/en/next/babel-helper-replace-supers - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-replace-supers 7.22.20 - MIT +https://babel.dev/docs/en/next/babel-helper-replace-supers + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44923,18 +44923,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helpers 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-helpers - -Copyright (c) 2014-present, Facebook, Inc. -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helpers 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-helpers + +Copyright (c) 2014-present, Facebook, Inc. +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44957,17 +44957,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-simple-access 7.22.5 - MIT -https://babel.dev/docs/en/next/babel-helper-simple-access - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-simple-access 7.22.5 - MIT +https://babel.dev/docs/en/next/babel-helper-simple-access + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -44990,17 +44990,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-skip-transparent-expression-wrappers 7.22.5 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-skip-transparent-expression-wrappers 7.22.5 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45023,17 +45023,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-split-export-declaration 7.22.6 - MIT -https://babel.dev/docs/en/next/babel-helper-split-export-declaration - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-split-export-declaration 7.22.6 - MIT +https://babel.dev/docs/en/next/babel-helper-split-export-declaration + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45056,17 +45056,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-string-parser 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-helper-string-parser - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-string-parser 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-helper-string-parser + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45089,17 +45089,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-validator-identifier 7.22.20 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-validator-identifier 7.22.20 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45122,17 +45122,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-validator-option 7.23.5 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-validator-option 7.23.5 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45155,17 +45155,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/helper-wrap-function 7.22.20 - MIT -https://babel.dev/docs/en/next/babel-helper-wrap-function - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/helper-wrap-function 7.22.20 - MIT +https://babel.dev/docs/en/next/babel-helper-wrap-function + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45188,17 +45188,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/highlight 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-highlight - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/highlight 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-highlight + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45221,17 +45221,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/parser 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-parser - -Copyright (c) 2012-2014 by various contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/parser 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-parser + +Copyright (c) 2012-2014 by various contributors + Copyright (C) 2012-2014 by various contributors (see AUTHORS) Permission is hereby granted, free of charge, to any person obtaining a copy @@ -45251,17 +45251,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45284,17 +45284,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45317,17 +45317,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-bugfix-v8-static-class-fields-redefine-readonly - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-bugfix-v8-static-class-fields-redefine-readonly + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45350,17 +45350,50 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-proposal-private-property-in-object 7.21.0-placeholder-for-preset-env.2 - MIT +https://babel.dev/docs/en/next/babel-plugin-proposal-private-property-in-object + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +MIT License +Copyright (c) 2014-present Sebastian McKenzie and other contributors ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-proposal-private-property-in-object 7.21.0-placeholder-for-preset-env.2 - MIT -https://babel.dev/docs/en/next/babel-plugin-proposal-private-property-in-object +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-async-generators 7.8.4 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45383,17 +45416,50 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-class-properties 7.12.13 - MIT +https://babel.dev/docs/en/next/babel-plugin-syntax-class-properties + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +MIT License +Copyright (c) 2014-present Sebastian McKenzie and other contributors ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-async-generators 7.8.4 - MIT - +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-class-static-block 7.14.5 - MIT +https://babel.dev/docs/en/next/babel-plugin-syntax-class-static-block + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45416,17 +45482,50 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-dynamic-import 7.8.3 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +MIT License +Copyright (c) 2014-present Sebastian McKenzie and other contributors ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-class-properties 7.12.13 - MIT -https://babel.dev/docs/en/next/babel-plugin-syntax-class-properties +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-export-namespace-from 7.8.3 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45449,17 +45548,50 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-import-assertions 7.23.3 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +MIT License +Copyright (c) 2014-present Sebastian McKenzie and other contributors ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-class-static-block 7.14.5 - MIT -https://babel.dev/docs/en/next/babel-plugin-syntax-class-static-block +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-import-attributes 7.23.3 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45482,17 +45614,50 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-import-meta 7.10.4 - MIT +https://github.com/babel/babel#readme + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +MIT License +Copyright (c) 2014-present Sebastian McKenzie and other contributors ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-dynamic-import 7.8.3 - MIT - +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-json-strings 7.8.3 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45515,17 +45680,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-export-namespace-from 7.8.3 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-jsx 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-syntax-jsx + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45548,17 +45713,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-import-assertions 7.23.3 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-logical-assignment-operators 7.10.4 - MIT +https://github.com/babel/babel#readme + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45581,17 +45746,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-import-attributes 7.23.3 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-nullish-coalescing-operator 7.8.3 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45614,17 +45779,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-import-meta 7.10.4 - MIT -https://github.com/babel/babel#readme - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-numeric-separator 7.10.4 - MIT +https://github.com/babel/babel#readme + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45647,17 +45812,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-json-strings 7.8.3 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-object-rest-spread 7.8.3 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45680,17 +45845,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-jsx 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-syntax-jsx - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-optional-catch-binding 7.8.3 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45713,17 +45878,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-logical-assignment-operators 7.10.4 - MIT -https://github.com/babel/babel#readme - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-optional-chaining 7.8.3 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45746,17 +45911,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-nullish-coalescing-operator 7.8.3 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-private-property-in-object 7.14.5 - MIT +https://babel.dev/docs/en/next/babel-plugin-syntax-private-property-in-object + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45779,17 +45944,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-numeric-separator 7.10.4 - MIT -https://github.com/babel/babel#readme - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-top-level-await 7.14.5 - MIT +https://babel.dev/docs/en/next/babel-plugin-syntax-top-level-await + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45812,17 +45977,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-object-rest-spread 7.8.3 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-typescript 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-syntax-typescript + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45845,17 +46010,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-optional-catch-binding 7.8.3 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-syntax-unicode-sets-regex 7.18.6 - MIT +https://babel.dev/docs/en/next/babel-plugin-syntax-unicode-sets-regex + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45878,17 +46043,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-optional-chaining 7.8.3 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-arrow-functions 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-arrow-functions + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45911,17 +46076,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-private-property-in-object 7.14.5 - MIT -https://babel.dev/docs/en/next/babel-plugin-syntax-private-property-in-object - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-async-generator-functions 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-async-generator-functions + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45944,17 +46109,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-top-level-await 7.14.5 - MIT -https://babel.dev/docs/en/next/babel-plugin-syntax-top-level-await - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-async-to-generator 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-async-to-generator + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -45977,17 +46142,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-typescript 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-syntax-typescript - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-block-scoped-functions 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-block-scoped-functions + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46010,17 +46175,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-syntax-unicode-sets-regex 7.18.6 - MIT -https://babel.dev/docs/en/next/babel-plugin-syntax-unicode-sets-regex - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-block-scoping 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-block-scoping + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46043,17 +46208,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-arrow-functions 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-arrow-functions - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-classes 7.23.5 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-classes + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46076,17 +46241,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-async-generator-functions 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-async-generator-functions - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-class-properties 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-class-properties + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46109,17 +46274,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-async-to-generator 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-async-to-generator - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-class-static-block 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-class-static-block + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46142,17 +46307,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-block-scoped-functions 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-block-scoped-functions - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-computed-properties 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-computed-properties + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46175,17 +46340,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-block-scoping 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-block-scoping - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-destructuring 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-destructuring + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46208,17 +46373,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-classes 7.23.5 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-classes - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-dotall-regex 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-dotall-regex + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46241,17 +46406,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-class-properties 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-class-properties - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-duplicate-keys 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-duplicate-keys + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46274,17 +46439,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-class-static-block 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-class-static-block - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-dynamic-import 7.23.4 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46307,17 +46472,50 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-exponentiation-operator 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-exponentiation-operator + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +MIT License +Copyright (c) 2014-present Sebastian McKenzie and other contributors ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-computed-properties 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-computed-properties +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-export-namespace-from 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-export-namespace-from + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46340,17 +46538,50 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-for-of 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-for-of + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +MIT License +Copyright (c) 2014-present Sebastian McKenzie and other contributors ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-destructuring 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-destructuring +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-function-name 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-function-name + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46373,17 +46604,50 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-json-strings 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-json-strings + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +MIT License +Copyright (c) 2014-present Sebastian McKenzie and other contributors ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-dotall-regex 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-dotall-regex +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-literals 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-literals + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46406,17 +46670,50 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-logical-assignment-operators 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-logical-assignment-operators + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +MIT License +Copyright (c) 2014-present Sebastian McKenzie and other contributors ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-duplicate-keys 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-duplicate-keys +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-member-expression-literals 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-member-expression-literals + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46439,17 +46736,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-dynamic-import 7.23.4 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-modules-amd 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-modules-amd + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46472,17 +46769,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-exponentiation-operator 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-exponentiation-operator - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-modules-commonjs 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-modules-commonjs + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46505,17 +46802,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-export-namespace-from 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-export-namespace-from - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-modules-systemjs 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-modules-systemjs + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46538,17 +46835,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-for-of 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-for-of - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-modules-umd 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-modules-umd + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46571,17 +46868,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-function-name 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-function-name - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-named-capturing-groups-regex 7.22.5 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-named-capturing-groups-regex + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46604,17 +46901,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-json-strings 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-json-strings - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-new-target 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-new-target + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46637,17 +46934,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-literals 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-literals - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-nullish-coalescing-operator 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-nullish-coalescing-operator + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46670,17 +46967,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-logical-assignment-operators 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-logical-assignment-operators - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-numeric-separator 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-numeric-separator + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46703,17 +47000,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-member-expression-literals 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-member-expression-literals - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-object-rest-spread 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-object-rest-spread + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46736,17 +47033,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-modules-amd 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-modules-amd - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-object-super 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-object-super + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46769,17 +47066,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-modules-commonjs 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-modules-commonjs - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-optional-catch-binding 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-optional-catch-binding + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46802,17 +47099,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-modules-systemjs 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-modules-systemjs - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-optional-chaining 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-optional-chaining + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46835,17 +47132,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-modules-umd 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-modules-umd - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-parameters 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-parameters + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46868,17 +47165,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-named-capturing-groups-regex 7.22.5 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-named-capturing-groups-regex - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-private-methods 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-private-methods + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46901,17 +47198,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-new-target 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-new-target - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-private-property-in-object 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-private-property-in-object + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46934,17 +47231,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-nullish-coalescing-operator 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-nullish-coalescing-operator - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-property-literals 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-property-literals + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -46967,17 +47264,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-numeric-separator 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-numeric-separator - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-react-constant-elements 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-react-constant-elements + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47000,17 +47297,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-object-rest-spread 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-object-rest-spread - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-react-display-name 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-react-display-name + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47033,17 +47330,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-object-super 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-object-super - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-react-jsx 7.23.4 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-react-jsx + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47066,17 +47363,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-optional-catch-binding 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-optional-catch-binding - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-react-jsx-development 7.22.5 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47099,17 +47396,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-optional-chaining 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-optional-chaining - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-react-pure-annotations 7.23.3 - MIT + + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47132,17 +47429,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-parameters 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-parameters - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-regenerator 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-regenerator + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47165,17 +47462,50 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-reserved-words 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-reserved-words + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +MIT License +Copyright (c) 2014-present Sebastian McKenzie and other contributors ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-private-methods 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-private-methods +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-runtime 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-runtime + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47198,17 +47528,50 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-shorthand-properties 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-shorthand-properties + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +MIT License +Copyright (c) 2014-present Sebastian McKenzie and other contributors ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-private-property-in-object 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-private-property-in-object +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-spread 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-spread + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47231,17 +47594,50 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-sticky-regex 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-sticky-regex + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +MIT License +Copyright (c) 2014-present Sebastian McKenzie and other contributors ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-property-literals 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-property-literals +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-template-literals 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-template-literals + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47264,17 +47660,50 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-typeof-symbol 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-typeof-symbol + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +MIT License +Copyright (c) 2014-present Sebastian McKenzie and other contributors ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-react-constant-elements 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-react-constant-elements +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-typescript 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-typescript + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47297,17 +47726,50 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-unicode-escapes 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-unicode-escapes + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +MIT License +Copyright (c) 2014-present Sebastian McKenzie and other contributors ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-react-display-name 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-react-display-name +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-unicode-property-regex 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-unicode-property-regex + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47330,17 +47792,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-react-jsx 7.23.4 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-react-jsx - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-unicode-regex 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-unicode-regex + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47363,17 +47825,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-react-jsx-development 7.22.5 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/plugin-transform-unicode-sets-regex 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-plugin-transform-unicode-sets-regex + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47396,17 +47858,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-react-pure-annotations 7.23.3 - MIT - - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/preset-env 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-preset-env + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47429,17 +47891,49 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/preset-modules 0.1.6-no-external-plugins - MIT +https://github.com/babel/preset-modules#readme + +Copyright (c) 2020 Babel + +MIT License +Copyright (c) 2020 Babel ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-regenerator 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-regenerator +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/preset-react 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-preset-react + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47462,17 +47956,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-reserved-words 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-reserved-words - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/preset-typescript 7.23.3 - MIT +https://babel.dev/docs/en/next/babel-preset-typescript + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47495,20 +47989,20 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/regjsgen 0.8.0 - MIT +https://github.com/bnjmnt4n/regjsgen + +Copyright 2014-2020 Benjamin Tan + +The MIT License (MIT) - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-runtime 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-runtime - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -MIT License - -Copyright (c) 2014-present Sebastian McKenzie and other contributors +Copyright 2014-2020 Benjamin Tan Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the @@ -47528,17 +48022,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-shorthand-properties 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-shorthand-properties - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/runtime 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-runtime + +Copyright (c) 2014-present, Facebook, Inc. +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47561,17 +48056,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-spread 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-spread - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/runtime-corejs3 7.23.6 - MIT + + +Copyright (c) 2014-present, Facebook, Inc. +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47594,17 +48090,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-sticky-regex 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-sticky-regex - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/template 7.22.15 - MIT +https://babel.dev/docs/en/next/babel-template + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47627,17 +48123,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-template-literals 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-template-literals - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/traverse 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-traverse + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47660,17 +48156,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-typeof-symbol 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-typeof-symbol - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@babel/types 7.23.6 - MIT +https://babel.dev/docs/en/next/babel-types + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -47693,218 +48189,396 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@discoveryjs/json-ext 0.5.7 - MIT +https://github.com/discoveryjs/json-ext#readme + +Copyright (c) 2020 Roman Dvornov + +MIT License +Copyright (c) 2020 Roman Dvornov ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/plugin-transform-typescript 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-typescript +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docsearch/css 3.5.2 - MIT +https://docsearch.algolia.com/ + +(c) Algolia, Inc. and contributors https://docsearch.algolia.com + MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Copyright (c) -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. +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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docsearch/react 3.5.2 - MIT +https://docsearch.algolia.com/ + +(c) Algolia, Inc. and contributors https://docsearch.algolia.com + +MIT License ---------------------------------------------------------- +Copyright (c) -@babel/plugin-transform-unicode-escapes 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-unicode-escapes +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/core 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) 2015 John Agan +Copyright (c) Facebook, Inc. and its affiliates + MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Copyright (c) Facebook, Inc. and its affiliates. -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. +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: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/cssnano-preset 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + +MIT License ---------------------------------------------------------- +Copyright (c) Facebook, Inc. and its affiliates. -@babel/plugin-transform-unicode-property-regex 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-unicode-property-regex +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/logger 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors +Copyright (c) Facebook, Inc. and its affiliates. -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: +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: -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -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. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/mdx-loader 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) 2020 Elvis Wolcott +Copyright (c) Facebook, Inc. and its affiliates + +MIT License +Copyright (c) Facebook, Inc. and its affiliates. ---------------------------------------------------------- +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -@babel/plugin-transform-unicode-regex 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-unicode-regex +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. -Copyright (c) 2014-present Sebastian McKenzie and other contributors MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors +Copyright (c) 2020 Elvis Wolcott -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: +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: -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -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. +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. +--- ---------------------------------------------------------- +MIT License ---------------------------------------------------------- +Copyright (c) Facebook, Inc. and its affiliates. -@babel/plugin-transform-unicode-sets-regex 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-plugin-transform-unicode-sets-regex +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/module-type-aliases 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Copyright (c) Facebook, Inc. and its affiliates. -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. +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: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/plugin-content-blog 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) 2023 Facebook, Inc. +Copyright (c) Facebook, Inc. and its affiliates + +MIT License ---------------------------------------------------------- +Copyright (c) Facebook, Inc. and its affiliates. -@babel/preset-env 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-preset-env +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/plugin-content-docs 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Copyright (c) Facebook, Inc. and its affiliates. -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. +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: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/plugin-content-pages 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + +MIT License ---------------------------------------------------------- +Copyright (c) Facebook, Inc. and its affiliates. -@babel/preset-modules 0.1.6-no-external-plugins - MIT -https://github.com/babel/preset-modules#readme +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: -Copyright (c) 2020 Babel +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/plugin-debug 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + MIT License -Copyright (c) 2020 Babel +Copyright (c) Facebook, Inc. and its affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -47923,293 +48597,155 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/plugin-google-analytics 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + +MIT License +Copyright (c) Facebook, Inc. and its affiliates. ---------------------------------------------------------- +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -@babel/preset-react 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-preset-react +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/plugin-google-gtag 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + +MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors +Copyright (c) Facebook, Inc. and its affiliates. -MIT License +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -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: +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/plugin-google-tag-manager 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + +MIT License -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Copyright (c) Facebook, Inc. and its affiliates. -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. +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: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/plugin-sitemap 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + +MIT License ---------------------------------------------------------- +Copyright (c) Facebook, Inc. and its affiliates. -@babel/preset-typescript 7.23.3 - MIT -https://babel.dev/docs/en/next/babel-preset-typescript +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: -Copyright (c) 2014-present Sebastian McKenzie and other contributors +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/preset-classic 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + MIT License -Copyright (c) 2014-present Sebastian McKenzie and other contributors +Copyright (c) Facebook, Inc. and its affiliates. -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/regjsgen 0.8.0 - MIT -https://github.com/bnjmnt4n/regjsgen - -Copyright 2014-2020 Benjamin Tan - -The MIT License (MIT) - -Copyright 2014-2020 Benjamin Tan - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/runtime 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-runtime - -Copyright (c) 2014-present, Facebook, Inc. -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -MIT License - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/runtime-corejs3 7.23.6 - MIT - - -Copyright (c) 2014-present, Facebook, Inc. -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -MIT License - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/template 7.22.15 - MIT -https://babel.dev/docs/en/next/babel-template - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -MIT License - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/traverse 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-traverse - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -MIT License - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@babel/types 7.23.6 - MIT -https://babel.dev/docs/en/next/babel-types - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -MIT License - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@discoveryjs/json-ext 0.5.7 - MIT -https://github.com/discoveryjs/json-ext#readme - -Copyright (c) 2020 Roman Dvornov - -MIT License - -Copyright (c) 2020 Roman Dvornov - -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: +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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. @@ -48221,59 +48757,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docsearch/css 3.5.2 - MIT -https://docsearch.algolia.com/ - -(c) Algolia, Inc. and contributors https://docsearch.algolia.com - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docsearch/react 3.5.2 - MIT -https://docsearch.algolia.com/ - -(c) Algolia, Inc. and contributors https://docsearch.algolia.com - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/core 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) 2015 John Agan -Copyright (c) Facebook, Inc. and its affiliates - -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/react-loadable 5.5.2 - MIT + + +Copyright (c) 2018-present Jamie Kyle + +Copyright (c) 2018-present Jamie Kyle Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48292,17 +48787,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/cssnano-preset 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/theme-classic 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +copyright Props JSX.Element +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -48324,17 +48820,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/logger 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/theme-common 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -48356,18 +48852,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/mdx-loader 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) 2020 Elvis Wolcott -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/theme-search-algolia 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -48389,11 +48884,20 @@ 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. - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/theme-translations 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + MIT License -Copyright (c) 2020 Elvis Wolcott +Copyright (c) Facebook, Inc. and its affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48412,9 +48916,17 @@ 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. - ---- - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/types 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -48436,17 +48948,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/module-type-aliases 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/utils 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -48468,18 +48980,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/plugin-content-blog 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) 2023 Facebook, Inc. -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/utils-common 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -48501,17 +49012,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/plugin-content-docs 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@docusaurus/utils-validation 3.0.1 - MIT +https://github.com/facebook/docusaurus#readme + +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -48533,20 +49044,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/plugin-content-pages 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@jest/schemas 29.6.3 - MIT +https://github.com/jestjs/jest#readme + +Copyright (c) Meta Platforms, Inc. and affiliates + MIT License -Copyright (c) Facebook, Inc. and its affiliates. +Copyright (c) Meta Platforms, Inc. and affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48565,20 +49076,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/plugin-debug 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@jest/types 29.6.3 - MIT +https://github.com/jestjs/jest#readme + +Copyright (c) Meta Platforms, Inc. and affiliates + MIT License -Copyright (c) Facebook, Inc. and its affiliates. +Copyright (c) Meta Platforms, Inc. and affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48597,20 +49108,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/plugin-google-analytics 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@jridgewell/gen-mapping 0.3.3 - MIT +https://github.com/jridgewell/gen-mapping#readme + +Copyright 2022 Justin Ridgewell + +Copyright 2022 Justin Ridgewell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48619,8 +49128,8 @@ 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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, @@ -48629,20 +49138,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/plugin-google-gtag 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@jridgewell/resolve-uri 3.1.1 - MIT +https://github.com/jridgewell/resolve-uri#readme + +Copyright 2019 Justin Ridgewell + +Copyright 2019 Justin Ridgewell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48651,8 +49158,8 @@ 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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, @@ -48660,21 +49167,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/plugin-google-tag-manager 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. +SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@jridgewell/set-array 1.1.2 - MIT +https://github.com/jridgewell/set-array#readme + +Copyright 2022 Justin Ridgewell + +Copyright 2022 Justin Ridgewell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48683,8 +49187,8 @@ 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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, @@ -48693,20 +49197,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/plugin-sitemap 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@jridgewell/source-map 0.3.5 - MIT +https://github.com/jridgewell/source-map#readme + +Copyright 2019 Justin Ridgewell + +Copyright 2019 Justin Ridgewell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48715,8 +49217,8 @@ 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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, @@ -48724,21 +49226,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/preset-classic 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - -MIT License +SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@jridgewell/sourcemap-codec 1.4.15 - MIT +https://github.com/jridgewell/sourcemap-codec#readme + +Copyright (c) 2015 Rich Harris + +The MIT License -Copyright (c) Facebook, Inc. and its affiliates. +Copyright (c) 2015 Rich Harris Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48747,28 +49248,28 @@ 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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/react-loadable 5.5.2 - MIT - - -Copyright (c) 2018-present Jamie Kyle - -Copyright (c) 2018-present Jamie Kyle +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@jridgewell/trace-mapping 0.3.20 - MIT +https://github.com/jridgewell/trace-mapping#readme + +Copyright 2022 Justin Ridgewell + +Copyright 2022 Justin Ridgewell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48777,8 +49278,8 @@ 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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, @@ -48787,21 +49288,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/theme-classic 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -copyright Props JSX.Element -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@leichtgewicht/ip-codec 2.0.4 - MIT +https://github.com/martinheidegger/ip-codec#readme + +Copyright (c) 2021 Martin Heidegger + MIT License -Copyright (c) Facebook, Inc. and its affiliates. +Copyright (c) 2021 Martin Heidegger Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48820,20 +49320,21 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@mdx-js/mdx 3.0.0 - MIT +https://mdxjs.com/ + +(c) Compositor and Vercel +Copyright (c) 2017 Compositor, Inc. and Vercel, Inc. + +The MIT License (MIT) - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/theme-common 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. +Copyright (c) 2017 Compositor, Inc. and Vercel, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48842,30 +49343,31 @@ 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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/theme-search-algolia 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - -MIT License +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@mdx-js/react 3.0.0 - MIT +https://mdxjs.com/ + +(c) Compositor and Vercel +Copyright (c) 2017 Compositor and Vercel, Inc. + +The MIT License (MIT) -Copyright (c) Facebook, Inc. and its affiliates. +Copyright (c) 2017 Compositor and Vercel, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48874,30 +49376,30 @@ 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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/theme-translations 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - -MIT License +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@nodelib/fs.scandir 2.1.5 - MIT + + +Copyright (c) Denis Malinochkin + +The MIT License (MIT) -Copyright (c) Facebook, Inc. and its affiliates. +Copyright (c) Denis Malinochkin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48916,20 +49418,20 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@nodelib/fs.stat 2.0.5 - MIT + + +Copyright (c) Denis Malinochkin + +The MIT License (MIT) - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/types 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. +Copyright (c) Denis Malinochkin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48948,20 +49450,20 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@nodelib/fs.walk 1.2.8 - MIT + + +Copyright (c) Denis Malinochkin + +The MIT License (MIT) - ---------------------------------------------------------- - ---------------------------------------------------------- - -@docusaurus/utils 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme - -Copyright (c) Facebook, Inc. and its affiliates - -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. +Copyright (c) Denis Malinochkin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48980,84 +49482,189 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@pnpm/config.env-replace 1.1.0 - MIT +https://bit.cloud/pnpm/config/env-replace + + +MIT License +Copyright (c) ---------------------------------------------------------- +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -@docusaurus/utils-common 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@pnpm/network.ca-file 1.0.2 - MIT +https://bit.dev/pnpm/network/ca-file + + +MIT License -Copyright (c) Facebook, Inc. and its affiliates +Copyright (c) -MIT License +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: -Copyright (c) Facebook, Inc. and its affiliates. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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: +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@pnpm/npm-conf 2.2.2 - MIT +https://github.com/pnpm/npm-conf#readme + +(c) Kevin Martensson (https://github.com/kevva) +Copyright (c) Kevin Martensson + +MIT License -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Copyright (c) Kevin Mårtensson (github.com/kevva) -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. +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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@polka/url 1.0.0-next.24 - MIT +https://github.com/lukeed/polka#readme + +(c) Luke Edwards (https://lukeed.com) + +MIT License ---------------------------------------------------------- +Copyright (c) -@docusaurus/utils-validation 3.0.1 - MIT -https://github.com/facebook/docusaurus#readme +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: -Copyright (c) Facebook, Inc. and its affiliates +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@sinclair/typebox 0.27.8 - MIT + + +Copyright (c) 2017-2023 Haydn Paterson + +TypeBox: JSON Schema Type Builder with Static Type Resolution for TypeScript + +The MIT License (MIT) + +Copyright (c) 2017-2023 Haydn Paterson (sinclair) + +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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@sindresorhus/is 4.6.0 - MIT +https://github.com/sindresorhus/is#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License -Copyright (c) Facebook, Inc. and its affiliates. +Copyright (c) Sindre Sorhus (https://sindresorhus.com) -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: +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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@sindresorhus/is 6.1.0 - MIT +https://github.com/sindresorhus/is#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +MIT License +Copyright (c) Sindre Sorhus (https://sindresorhus.com) ---------------------------------------------------------- +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -@jest/schemas 29.6.3 - MIT -https://github.com/jestjs/jest#readme +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@slorber/remark-comment 1.0.0 - MIT +https://github.com/leebyron/remark-comment#readme + +Copyright 2021, Lee Byron + +MIT License -Copyright (c) Meta Platforms, Inc. and affiliates +Copyright 2021, Lee Byron -MIT License +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: -Copyright (c) Meta Platforms, Inc. and affiliates. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@slorber/static-site-generator-webpack-plugin 4.0.7 - MIT +https://github.com/slorber/static-site-generator-webpack-plugin + +Copyright (c) 2015 Mark Dalgleish + +The MIT License (MIT) + +Copyright (c) 2015 Mark Dalgleish Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -49076,139 +49683,272 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/babel-plugin-add-jsx-attribute 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/babel-plugin-remove-jsx-attribute 8.0.0 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code -@jest/types 29.6.3 - MIT -https://github.com/jestjs/jest#readme +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: -Copyright (c) Meta Platforms, Inc. and affiliates +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -MIT License +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/babel-plugin-remove-jsx-empty-expression 8.0.0 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code -Copyright (c) Meta Platforms, Inc. and affiliates. +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: -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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/babel-plugin-replace-jsx-attribute-value 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code -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. +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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/babel-plugin-svg-dynamic-title 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code ---------------------------------------------------------- +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: -@jridgewell/gen-mapping 0.3.3 - MIT -https://github.com/jridgewell/gen-mapping#readme +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright 2022 Justin Ridgewell +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/babel-plugin-svg-em-dimensions 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code -Copyright 2022 Justin Ridgewell +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: -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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/babel-plugin-transform-react-native-svg 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code -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. +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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/babel-plugin-transform-svg-component 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code ---------------------------------------------------------- +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: -@jridgewell/resolve-uri 3.1.1 - MIT -https://github.com/jridgewell/resolve-uri#readme +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright 2019 Justin Ridgewell +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/babel-preset 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code -Copyright 2019 Justin Ridgewell +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: -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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/core 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code -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. +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/hast-util-to-babel-ast 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code -@jridgewell/set-array 1.1.2 - MIT -https://github.com/jridgewell/set-array#readme +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: -Copyright 2022 Justin Ridgewell +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright 2022 Justin Ridgewell +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/plugin-jsx 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code -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: +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: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/plugin-svgo 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@svgr/webpack 6.5.1 - MIT +https://react-svgr.com/ + +Copyright 2017 Smooth + +Copyright 2017 Smooth Code ---------------------------------------------------------- +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: -@jridgewell/source-map 0.3.5 - MIT -https://github.com/jridgewell/source-map#readme +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright 2019 Justin Ridgewell +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@szmarczak/http-timer 5.0.1 - MIT +https://github.com/szmarczak/http-timer#readme + +Copyright (c) 2018 Szymon Marczak + +MIT License -Copyright 2019 Justin Ridgewell +Copyright (c) 2018 Szymon Marczak Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -49217,8 +49957,8 @@ 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: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, @@ -49227,271 +49967,435 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/acorn 4.0.6 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/acorn + +Copyright (c) Microsoft Corporation. + +MIT License ---------------------------------------------------------- +Copyright (c) ---------------------------------------------------------- +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: -@jridgewell/sourcemap-codec 1.4.15 - MIT -https://github.com/jridgewell/sourcemap-codec#readme +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright (c) 2015 Rich Harris +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/body-parser 1.19.5 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/body-parser + +Copyright (c) Microsoft Corporation + +MIT License -The MIT License +Copyright (c) -Copyright (c) 2015 Rich Harris +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: -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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/bonjour 3.5.13 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/bonjour + +Copyright (c) Microsoft Corporation + +MIT License -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. +Copyright (c) +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/connect 3.4.38 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/connect + +Copyright (c) Microsoft Corporation + +MIT License -@jridgewell/trace-mapping 0.3.20 - MIT -https://github.com/jridgewell/trace-mapping#readme +Copyright (c) -Copyright 2022 Justin Ridgewell +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: -Copyright 2022 Justin Ridgewell +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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: +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/connect-history-api-fallback 1.5.4 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/connect-history-api-fallback + +Copyright (c) Microsoft Corporation + +MIT License -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +Copyright (c) -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. +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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/debug 4.1.12 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/debug + +Copyright (c) Microsoft Corporation + +MIT License ---------------------------------------------------------- +Copyright (c) -@leichtgewicht/ip-codec 2.0.4 - MIT -https://github.com/martinheidegger/ip-codec#readme +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: -Copyright (c) 2021 Martin Heidegger +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/eslint 8.56.0 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint + +Copyright (c) Microsoft Corporation + MIT License -Copyright (c) 2021 Martin Heidegger +Copyright (c) -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: +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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/eslint-scope 3.7.7 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint-scope + +Copyright (c) Microsoft Corporation + +MIT License +Copyright (c) ---------------------------------------------------------- +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -@mdx-js/mdx 3.0.0 - MIT -https://mdxjs.com/ +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/estree 1.0.5 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/estree + +Copyright (c) Microsoft Corporation + +MIT License -(c) Compositor and Vercel -Copyright (c) 2017 Compositor, Inc. and Vercel, Inc. +Copyright (c) -The MIT License (MIT) +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: -Copyright (c) 2017 Compositor, Inc. and Vercel, Inc. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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: +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/estree-jsx 1.0.3 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/estree-jsx + +Copyright (c) Microsoft Corporation + +MIT License -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +Copyright (c) -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. +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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/express 4.17.21 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express + +Copyright (c) Microsoft Corporation + +MIT License ---------------------------------------------------------- +Copyright (c) -@mdx-js/react 3.0.0 - MIT -https://mdxjs.com/ +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: -(c) Compositor and Vercel -Copyright (c) 2017 Compositor and Vercel, Inc. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -The MIT License (MIT) +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/express-serve-static-core 4.17.41 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express-serve-static-core + +Copyright (c) Microsoft Corporation + +MIT License -Copyright (c) 2017 Compositor and Vercel, Inc. +Copyright (c) -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: +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: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/gtag.js 0.0.12 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gtag.js + +Copyright (c) Microsoft Corporation + +MIT License +Copyright (c) ---------------------------------------------------------- +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -@nodelib/fs.scandir 2.1.5 - MIT +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/hast 3.0.3 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/hast + +Copyright (c) Microsoft Corporation + +MIT License +Copyright (c) -Copyright (c) Denis Malinochkin +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: -The MIT License (MIT) +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright (c) Denis Malinochkin +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/history 4.7.11 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/history + +Copyright (c) Microsoft Corporation + +MIT License -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: +Copyright (c) -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/html-minifier-terser 6.1.0 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/html-minifier-terser + +Copyright (c) Microsoft Corporation + +MIT License ---------------------------------------------------------- +Copyright (c) ---------------------------------------------------------- +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: -@nodelib/fs.stat 2.0.5 - MIT +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/http-cache-semantics 4.0.4 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/http-cache-semantics + +Copyright (c) Microsoft Corporation + +MIT License -Copyright (c) Denis Malinochkin +Copyright (c) -The MIT License (MIT) +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: -Copyright (c) Denis Malinochkin +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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: +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/http-errors 2.0.4 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/http-errors + +Copyright (c) Microsoft Corporation + +MIT License -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Copyright (c) -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. +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/http-proxy 1.17.14 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/http-proxy + +Copyright (c) Microsoft Corporation + +MIT License ---------------------------------------------------------- +Copyright (c) ---------------------------------------------------------- +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: -@nodelib/fs.walk 1.2.8 - MIT +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/istanbul-lib-coverage 2.0.6 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/istanbul-lib-coverage + +Copyright (c) Microsoft Corporation + +MIT License -Copyright (c) Denis Malinochkin +Copyright (c) -The MIT License (MIT) +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: -Copyright (c) Denis Malinochkin +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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: +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/istanbul-lib-report 3.0.3 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/istanbul-lib-report + +Copyright (c) Microsoft Corporation + +MIT License -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Copyright (c) -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. +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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/istanbul-reports 3.0.4 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/istanbul-reports + +Copyright (c) Microsoft Corporation + +MIT License ---------------------------------------------------------- +Copyright (c) -@pnpm/config.env-replace 1.1.0 - MIT -https://bit.cloud/pnpm/config/env-replace +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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/json-schema 7.0.15 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-schema + +Copyright (c) Microsoft Corporation + MIT License Copyright (c) @@ -49500,16 +50404,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/mdast 4.0.3 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mdast + +Copyright (c) Microsoft Corporation + +MIT License ---------------------------------------------------------- +Copyright (c) -@pnpm/network.ca-file 1.0.2 - MIT -https://bit.dev/pnpm/network/ca-file +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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/mdx 2.0.10 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mdx + +Copyright (c) Microsoft Corporation + MIT License Copyright (c) @@ -49518,38 +50442,74 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/mime 1.3.5 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mime + +Copyright (c) Microsoft Corporation + +MIT License ---------------------------------------------------------- +Copyright (c) -@pnpm/npm-conf 2.2.2 - MIT -https://github.com/pnpm/npm-conf#readme +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: -(c) Kevin Martensson (https://github.com/kevva) -Copyright (c) Kevin Martensson +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/ms 0.7.34 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ms + +Copyright (c) Microsoft Corporation + MIT License -Copyright (c) Kevin Mårtensson (github.com/kevva) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/node 17.0.45 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node + +Copyright (c) Microsoft Corporation + +MIT License ---------------------------------------------------------- +Copyright (c) -@polka/url 1.0.0-next.24 - MIT -https://github.com/lukeed/polka#readme +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: -(c) Luke Edwards (https://lukeed.com) +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/node 20.10.5 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node + +Copyright (c) Microsoft Corporation + MIT License Copyright (c) @@ -49558,426 +50518,537 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/node-forge 1.3.10 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node-forge + +Copyright (c) Microsoft Corporation + +MIT License ---------------------------------------------------------- +Copyright (c) ---------------------------------------------------------- +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: -@sinclair/typebox 0.27.8 - MIT +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/parse-json 4.0.2 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/parse-json + +Copyright (c) Microsoft Corporation + +MIT License -Copyright (c) 2017-2023 Haydn Paterson +Copyright (c) -TypeBox: JSON Schema Type Builder with Static Type Resolution for TypeScript +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: -The MIT License (MIT) +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright (c) 2017-2023 Haydn Paterson (sinclair) +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/prismjs 1.26.3 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/prismjs + +Copyright (c) Microsoft Corporation + +MIT License -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: +Copyright (c) -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/prop-types 15.7.11 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/prop-types + +Copyright (c) Microsoft Corporation + +MIT License ---------------------------------------------------------- +Copyright (c) -@sindresorhus/is 4.6.0 - MIT -https://github.com/sindresorhus/is#readme +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: -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/qs 6.9.11 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/qs + +Copyright (c) Microsoft Corporation + MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/range-parser 1.2.7 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/range-parser + +Copyright (c) Microsoft Corporation + +MIT License ---------------------------------------------------------- +Copyright (c) -@sindresorhus/is 6.1.0 - MIT -https://github.com/sindresorhus/is#readme +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: -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/react 18.2.45 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react + +Copyright (c) Microsoft Corporation + MIT License -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/react-router 5.1.20 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router + +Copyright (c) Microsoft Corporation + +MIT License ---------------------------------------------------------- +Copyright (c) -@slorber/remark-comment 1.0.0 - MIT -https://github.com/leebyron/remark-comment#readme +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: -Copyright 2021, Lee Byron +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/react-router-config 5.0.11 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router-config + +Copyright (c) Microsoft Corporation + MIT License -Copyright 2021, Lee Byron +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/react-router-dom 5.3.3 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router-dom + +Copyright (c) Microsoft Corporation + +MIT License +Copyright (c) ---------------------------------------------------------- +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -@slorber/static-site-generator-webpack-plugin 4.0.7 - MIT -https://github.com/slorber/static-site-generator-webpack-plugin +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/retry 0.12.0 - MIT + + +Copyright (c) Microsoft Corporation + +MIT License -Copyright (c) 2015 Mark Dalgleish +Copyright (c) -The MIT License (MIT) +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: -Copyright (c) 2015 Mark Dalgleish +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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: +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/sax 1.2.7 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sax + +Copyright (c) Microsoft Corporation + +MIT License -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Copyright (c) -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. +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/scheduler 0.16.8 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/scheduler + +Copyright (c) Microsoft Corporation + +MIT License ---------------------------------------------------------- +Copyright (c) ---------------------------------------------------------- +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: -@svgr/babel-plugin-add-jsx-attribute 6.5.1 - MIT -https://react-svgr.com/ +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright 2017 Smooth +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/send 0.17.4 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/send + +Copyright (c) Microsoft Corporation + +MIT License -Copyright 2017 Smooth Code +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/serve-index 1.9.4 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/serve-index + +Copyright (c) Microsoft Corporation + +MIT License ---------------------------------------------------------- +Copyright (c) ---------------------------------------------------------- +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: -@svgr/babel-plugin-remove-jsx-attribute 8.0.0 - MIT -https://react-svgr.com/ +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright 2017 Smooth +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/serve-static 1.15.5 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/serve-static + +Copyright (c) Microsoft Corporation + +MIT License -Copyright 2017 Smooth Code +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/babel-plugin-remove-jsx-empty-expression 8.0.0 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth - -Copyright 2017 Smooth Code - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/babel-plugin-replace-jsx-attribute-value 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth - -Copyright 2017 Smooth Code - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/babel-plugin-svg-dynamic-title 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/sockjs 0.3.36 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sockjs + +Copyright (c) Microsoft Corporation + +MIT License -Copyright 2017 Smooth Code +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/babel-plugin-svg-em-dimensions 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/unist 2.0.10 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/unist + +Copyright (c) Microsoft Corporation + +MIT License -Copyright 2017 Smooth Code +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/babel-plugin-transform-react-native-svg 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/unist 3.0.2 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/unist + +Copyright (c) Microsoft Corporation + +MIT License -Copyright 2017 Smooth Code +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/babel-plugin-transform-svg-component 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/ws 8.5.10 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ws + +Copyright (c) Microsoft Corporation + +MIT License -Copyright 2017 Smooth Code +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/babel-preset 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/yargs 17.0.32 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/yargs + +Copyright (c) Microsoft Corporation + +MIT License -Copyright 2017 Smooth Code +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/core 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/yargs-parser 21.0.3 - MIT +https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/yargs-parser + +Copyright (c) Microsoft Corporation + +MIT License -Copyright 2017 Smooth Code +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/hast-util-to-babel-ast 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/ast 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + +MIT License -Copyright 2017 Smooth Code +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/plugin-jsx 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/floating-point-hex-parser 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + +Copyright (c) 2017 Mauro Bringolf + +MIT License + +Copyright (c) 2017 Mauro Bringolf + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/helper-api-error 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + +MIT License -Copyright 2017 Smooth Code +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/plugin-svgo 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/helper-buffer 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + +MIT License -Copyright 2017 Smooth Code +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@svgr/webpack 6.5.1 - MIT -https://react-svgr.com/ - -Copyright 2017 Smooth +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/helper-numbers 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + +MIT License -Copyright 2017 Smooth Code +Copyright (c) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@szmarczak/http-timer 5.0.1 - MIT -https://github.com/szmarczak/http-timer#readme - -Copyright (c) 2018 Szymon Marczak - -MIT License - -Copyright (c) 2018 Szymon Marczak - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/acorn 4.0.6 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/acorn - -Copyright (c) Microsoft Corporation. - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/helper-wasm-bytecode 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + MIT License Copyright (c) @@ -49986,17 +51057,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/body-parser 1.19.5 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/body-parser - -Copyright (c) Microsoft Corporation - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/helper-wasm-section 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + MIT License Copyright (c) @@ -50005,17 +51075,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/bonjour 3.5.13 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/bonjour - -Copyright (c) Microsoft Corporation - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/ieee754 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + MIT License Copyright (c) @@ -50024,17 +51093,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/connect 3.4.38 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/connect - -Copyright (c) Microsoft Corporation - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/utf8 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + MIT License Copyright (c) @@ -50043,17 +51111,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/connect-history-api-fallback 1.5.4 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/connect-history-api-fallback - -Copyright (c) Microsoft Corporation - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/wasm-edit 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + MIT License Copyright (c) @@ -50062,17 +51129,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/debug 4.1.12 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/debug - -Copyright (c) Microsoft Corporation - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/wasm-gen 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + MIT License Copyright (c) @@ -50081,17 +51147,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/eslint 8.56.0 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint - -Copyright (c) Microsoft Corporation - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/wasm-opt 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + MIT License Copyright (c) @@ -50100,17 +51165,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/eslint-scope 3.7.7 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint-scope - -Copyright (c) Microsoft Corporation - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/wasm-parser 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + MIT License Copyright (c) @@ -50119,17 +51183,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/estree 1.0.5 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/estree - -Copyright (c) Microsoft Corporation - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@webassemblyjs/wast-printer 1.11.6 - MIT +https://github.com/xtuc/webassemblyjs#readme + + MIT License Copyright (c) @@ -50138,36 +51201,85 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +accepts 1.3.8 - MIT +https://github.com/jshttp/accepts#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson + +(The MIT License) ---------------------------------------------------------- +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson -@types/estree-jsx 1.0.3 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/estree-jsx +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: -Copyright (c) Microsoft Corporation +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +acorn 8.11.2 - MIT +https://github.com/acornjs/acorn + +Copyright (c) 2012-2022 by various contributors + MIT License -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +Copyright (C) 2012-2022 by various contributors (see AUTHORS) -@types/express 4.17.21 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express +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: -Copyright (c) Microsoft Corporation +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +acorn-import-assertions 1.9.0 - MIT +https://github.com/xtuc/acorn-import-assertions#readme + + MIT License Copyright (c) @@ -50176,74 +51288,230 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +acorn-jsx 5.3.2 - MIT +https://github.com/acornjs/acorn-jsx + +Copyright (c) 2012-2017 by Ingvar Stepanyan + +Copyright (C) 2012-2017 by Ingvar Stepanyan -@types/express-serve-static-core 4.17.41 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express-serve-static-core +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: -Copyright (c) Microsoft Corporation +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +acorn-walk 8.3.1 - MIT +https://github.com/acornjs/acorn + +Copyright (c) 2012-2020 by various contributors + MIT License -Copyright (c) - -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: +Copyright (C) 2012-2020 by various contributors (see AUTHORS) -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +address 1.2.2 - MIT +https://github.com/node-modules/address#readme + +Copyright (c) 2013 - 2014 fengmk2 +Copyright (c) 2015 - present node-modules and other contributors + +This software is licensed under the MIT License. ---------------------------------------------------------- +Copyright (C) 2013 - 2014 fengmk2 +Copyright (C) 2015 - present node-modules and other contributors. -@types/gtag.js 0.0.12 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gtag.js +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: -Copyright (c) Microsoft Corporation +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +aggregate-error 3.1.0 - MIT +https://github.com/sindresorhus/aggregate-error#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ajv 8.12.0 - MIT +https://ajv.js.org/ + +Copyright (c) 2015-2021 Evgeny Poberezkin + +The MIT License (MIT) ---------------------------------------------------------- +Copyright (c) 2015-2021 Evgeny Poberezkin ---------------------------------------------------------- +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: -@types/hast 3.0.3 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/hast +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -Copyright (c) Microsoft Corporation +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ajv-formats 2.1.1 - MIT +https://github.com/ajv-validator/ajv-formats#readme + +Copyright (c) 2020 Evgeny Poberezkin + MIT License -Copyright (c) - -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: +Copyright (c) 2020 Evgeny Poberezkin -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ajv-keywords 5.1.0 - MIT +https://github.com/epoberezkin/ajv-keywords#readme + +Copyright (c) 2016 Evgeny Poberezkin + +The MIT License (MIT) ---------------------------------------------------------- +Copyright (c) 2016 Evgeny Poberezkin -@types/history 4.7.11 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/history +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: -Copyright (c) Microsoft Corporation +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +algoliasearch 4.22.0 - MIT + + +(c) Algolia, inc. https://github.com/algolia/algoliasearch-client-javascript + MIT License Copyright (c) @@ -50252,340 +51520,953 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +algoliasearch-helper 3.16.1 - MIT +https://community.algolia.com/algoliasearch-helper-js/ + +Copyright (c) 2015 Algolia +Copyright Joyent, Inc. and other Node contributors + +The MIT License (MIT) ---------------------------------------------------------- +Copyright (c) 2015 Algolia ---------------------------------------------------------- +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: -@types/html-minifier-terser 6.1.0 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/html-minifier-terser +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -Copyright (c) Microsoft Corporation +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ansi-regex 5.0.1 - MIT +https://github.com/chalk/ansi-regex#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/http-cache-semantics 4.0.4 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/http-cache-semantics - -Copyright (c) Microsoft Corporation - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ansi-styles 4.3.0 - MIT +https://github.com/chalk/ansi-styles#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/http-errors 2.0.4 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/http-errors - -Copyright (c) Microsoft Corporation - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ansi-styles 6.2.1 - MIT +https://github.com/chalk/ansi-styles#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +arg 5.0.2 - MIT +https://github.com/vercel/arg#readme + +Copyright (c) 2021 Vercel, Inc. + +The MIT License (MIT) ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/http-proxy 1.17.14 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/http-proxy +Copyright (c) 2021 Vercel, Inc. -Copyright (c) Microsoft Corporation +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: -MIT License +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -Copyright (c) +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +array-flatten 1.1.1 - MIT +https://github.com/blakeembrey/array-flatten + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + +The MIT License (MIT) -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: +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +array-flatten 2.1.2 - MIT +https://github.com/blakeembrey/array-flatten + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + +The MIT License (MIT) ---------------------------------------------------------- +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) -@types/istanbul-lib-coverage 2.0.6 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/istanbul-lib-coverage +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: -Copyright (c) Microsoft Corporation +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +array-union 2.1.0 - MIT +https://github.com/sindresorhus/array-union#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +astring 1.8.6 - MIT +https://github.com/davidbonnet/astring#readme + +Copyright (c) 2015, David Bonnet + +Copyright (c) 2015, David Bonnet ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/istanbul-lib-report 3.0.3 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/istanbul-lib-report - -Copyright (c) Microsoft Corporation +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: -MIT License +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -Copyright (c) +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +autoprefixer 10.4.16 - MIT +https://github.com/postcss/autoprefixer#readme + +Copyright 2013 Andrey Sitnik + +The MIT License (MIT) -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: +Copyright 2013 Andrey Sitnik -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +babel-loader 9.1.3 - MIT +https://github.com/babel/babel-loader + +Copyright (c) 2014-2019 Luis Couto + +Copyright (c) 2014-2019 Luís Couto ---------------------------------------------------------- +MIT License -@types/istanbul-reports 3.0.4 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/istanbul-reports +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: -Copyright (c) Microsoft Corporation +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +babel-plugin-dynamic-import-node 2.3.3 - MIT +https://github.com/airbnb/babel-plugin-dynamic-import-node#readme + +Copyright (c) 2016 Airbnb + MIT License -Copyright (c) +Copyright (c) 2016 Airbnb -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/json-schema 7.0.15 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-schema +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: -Copyright (c) Microsoft Corporation +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +babel-plugin-polyfill-corejs2 0.4.7 - MIT +https://github.com/babel/babel-polyfills#readme + +Copyright (c) 2014-present Nicolo Ribaudo and other contributors + MIT License -Copyright (c) - -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: +Copyright (c) 2014-present Nicolò Ribaudo and other contributors -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +babel-plugin-polyfill-corejs3 0.8.7 - MIT +https://github.com/babel/babel-polyfills#readme + +Copyright (c) 2014-present Nicolo Ribaudo and other contributors + +MIT License ---------------------------------------------------------- +Copyright (c) 2014-present Nicolò Ribaudo and other contributors -@types/mdast 4.0.3 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mdast +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: -Copyright (c) Microsoft Corporation +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +babel-plugin-polyfill-regenerator 0.5.4 - MIT +https://github.com/babel/babel-polyfills#readme + +Copyright (c) 2014-present Nicolo Ribaudo and other contributors + MIT License -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) 2014-present Nicolò Ribaudo and other contributors -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. +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +bail 2.0.2 - MIT +https://github.com/wooorm/bail#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + +(The MIT License) -@types/mdx 2.0.10 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mdx +Copyright (c) 2015 Titus Wormer -Copyright (c) Microsoft Corporation +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: -MIT License +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -Copyright (c) +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +balanced-match 1.0.2 - MIT +https://github.com/juliangruber/balanced-match + +Copyright (c) 2013 Julian Gruber + +(MIT) -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: +Copyright (c) 2013 Julian Gruber <julian@juliangruber.com> -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +batch 0.6.1 - MIT +https://github.com/visionmedia/batch#readme + +Copyright (c) 2013 TJ Holowaychuk + +(The MIT License) ---------------------------------------------------------- +Copyright (c) 2013 TJ Holowaychuk -@types/mime 1.3.5 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mime +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: -Copyright (c) Microsoft Corporation +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +big.js 5.2.2 - MIT +https://github.com/MikeMcl/big.js#readme + +Copyright (c) 2018 Michael Mclaughlin +Copyright (c) 2018 Michael Mclaughlin https://github.com/MikeMcl/big.js/LICENCE + +The MIT Licence (Expat). + +Copyright (c) 2018 Michael Mclaughlin + +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + + +--------------------------------------------------------- + +--------------------------------------------------------- + +binary-extensions 2.2.0 - MIT +https://github.com/sindresorhus/binary-extensions#readme + +Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com) + MIT License -Copyright (c) +Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +body-parser 1.20.1 - MIT +https://github.com/expressjs/body-parser#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2015 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2015 Douglas Christopher Wilson + +(The MIT License) ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/ms 0.7.34 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ms - -Copyright (c) Microsoft Corporation - -MIT License - -Copyright (c) +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2015 Douglas Christopher Wilson -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: +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: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -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. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +bonjour-service 1.1.1 - MIT +https://github.com/onlxltd/bonjour-service + +(c) 2021 ON LX Limited +(c) 2015-2016 Thomas Watson Steen +Copyright (https://github.com/onlxltd/bonjour-service) + +The MIT License (MIT) ---------------------------------------------------------- +Copyright (https://github.com/onlxltd/bonjour-service) (c) 2021 ON LX Limited ---------------------------------------------------------- +Portions Copyright (Bonjour - https://github.com/watson/bonjour) (c) 2015-2016 Thomas Watson Steen -@types/node 17.0.45 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node +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: -Copyright (c) Microsoft Corporation +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +boxen 6.2.1 - MIT +https://github.com/sindresorhus/boxen#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/node 20.10.5 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node - -Copyright (c) Microsoft Corporation - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +boxen 7.1.1 - MIT +https://github.com/sindresorhus/boxen#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +brace-expansion 1.1.11 - MIT +https://github.com/juliangruber/brace-expansion + +Copyright (c) 2013 Julian Gruber + +MIT License ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/node-forge 1.3.10 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node-forge +Copyright (c) 2013 Julian Gruber -Copyright (c) Microsoft Corporation +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: -MIT License +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -Copyright (c) +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +braces 3.0.2 - MIT +https://github.com/micromatch/braces + +Copyright (c) 2014-2018, Jon Schlinkert +Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) -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: +Copyright (c) 2014-2018, Jon Schlinkert. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +browserslist 4.22.2 - MIT +https://github.com/browserslist/browserslist#readme + +Copyright 2014 Andrey Sitnik and other contributors + +The MIT License (MIT) ---------------------------------------------------------- +Copyright 2014 Andrey Sitnik and other contributors -@types/parse-json 4.0.2 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/parse-json +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: -Copyright (c) Microsoft Corporation +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +buffer-from 1.1.2 - MIT +https://github.com/LinusU/buffer-from#readme + +Copyright (c) 2016, 2018 Linus Unneback + MIT License -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) 2016, 2018 Linus Unnebäck -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. +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +bytes 3.0.0 - MIT +https://github.com/visionmedia/bytes.js#readme + +Copyright (c) 2015 Jed Watson +Copyright (c) 2012-2014 TJ Holowaychuk +Copyright (c) 2015 Jed Watson +Copyright (c) 2012-2014 TJ Holowaychuk + +(The MIT License) -@types/prismjs 1.26.3 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/prismjs +Copyright (c) 2012-2014 TJ Holowaychuk +Copyright (c) 2015 Jed Watson -Copyright (c) Microsoft Corporation +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: -MIT License +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -Copyright (c) +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +bytes 3.1.2 - MIT +https://github.com/visionmedia/bytes.js#readme + +Copyright (c) 2015 Jed Watson +Copyright (c) 2012-2014 TJ Holowaychuk +Copyright (c) 2015 Jed Watson +Copyright (c) 2012-2014 TJ Holowaychuk + +(The MIT License) -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: +Copyright (c) 2012-2014 TJ Holowaychuk +Copyright (c) 2015 Jed Watson -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cacheable-lookup 7.0.0 - MIT +https://github.com/szmarczak/cacheable-lookup#readme + +Copyright (c) 2019 Szymon Marczak + +MIT License ---------------------------------------------------------- +Copyright (c) 2019 Szymon Marczak -@types/prop-types 15.7.11 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/prop-types +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: -Copyright (c) Microsoft Corporation +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cacheable-request 10.2.14 - MIT + + +(c) Luke Childs 2017-2021 and Jared Wray 2022 + MIT License Copyright (c) @@ -50594,380 +52475,841 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +call-bind 1.0.5 - MIT +https://github.com/ljharb/call-bind#readme + +Copyright (c) 2020 Jordan Harband + +MIT License ---------------------------------------------------------- +Copyright (c) 2020 Jordan Harband -@types/qs 6.9.11 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/qs +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: -Copyright (c) Microsoft Corporation +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +callsites 3.1.0 - MIT +https://github.com/sindresorhus/callsites#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/range-parser 1.2.7 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/range-parser - -Copyright (c) Microsoft Corporation - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +camelcase 6.3.0 - MIT +https://github.com/sindresorhus/camelcase#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +camel-case 4.1.2 - MIT +https://github.com/blakeembrey/change-case/tree/master/packages/camel-case#readme + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + +The MIT License (MIT) ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/react 18.2.45 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) -Copyright (c) Microsoft Corporation +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: -MIT License +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -Copyright (c) +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +caniuse-api 3.0.0 - MIT +https://github.com/nyalab/caniuse-api#readme + +Copyright (c) 2014 Sebastien Balayn + +The MIT License (MIT) -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: +Copyright (c) 2014 Sébastien Balayn -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ccount 2.0.1 - MIT +https://github.com/wooorm/ccount#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + +(The MIT License) ---------------------------------------------------------- +Copyright (c) 2015 Titus Wormer -@types/react-router 5.1.20 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router +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: -Copyright (c) Microsoft Corporation +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +chalk 2.4.2 - MIT +https://github.com/chalk/chalk#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/react-router-config 5.0.11 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router-config - -Copyright (c) Microsoft Corporation - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +chalk 4.1.2 - MIT +https://github.com/chalk/chalk#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/react-router-dom 5.3.3 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router-dom - -Copyright (c) Microsoft Corporation - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +chalk 5.3.0 - MIT +https://github.com/chalk/chalk#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +character-entities 2.0.2 - MIT +https://github.com/wooorm/character-entities#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + +(The MIT License) ---------------------------------------------------------- +Copyright (c) 2015 Titus Wormer ---------------------------------------------------------- +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: -@types/retry 0.12.0 - MIT +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +character-entities-html4 2.1.0 - MIT +https://github.com/wooorm/character-entities-html4#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + +(The MIT License) -Copyright (c) Microsoft Corporation +Copyright (c) 2015 Titus Wormer -MIT License +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: -Copyright (c) +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -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: +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +character-entities-legacy 3.0.0 - MIT +https://github.com/wooorm/character-entities-legacy#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + +(The MIT License) -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) 2015 Titus Wormer -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. +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +character-reference-invalid 2.0.1 - MIT +https://github.com/wooorm/character-reference-invalid#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + +(The MIT License) -@types/sax 1.2.7 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sax +Copyright (c) 2015 Titus Wormer -Copyright (c) Microsoft Corporation +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: -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/scheduler 0.16.8 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/scheduler - -Copyright (c) Microsoft Corporation - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/send 0.17.4 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/send - -Copyright (c) Microsoft Corporation +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +char-regex 1.0.2 - MIT + + +Copyright (c) 2019 Richie Bendall + +MIT License + +Copyright (c) 2019 Richie Bendall + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cheerio 1.0.0-rc.12 - MIT +https://cheerio.js.org/ + +Copyright (c) 2022 The Cheerio contributors + MIT License -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/serve-index 1.9.4 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/serve-index - -Copyright (c) Microsoft Corporation +Copyright (c) 2022 The Cheerio contributors -MIT License +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: -Copyright (c) +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -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: +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +chokidar 3.5.3 - MIT +https://github.com/paulmillr/chokidar + +(c) Paul Miller +Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker + +The MIT License (MIT) -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker -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. +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +chrome-trace-event 1.0.3 - MIT +https://github.com/samccone/chrome-trace-event#readme + +Copyright (c) 2015 Joyent Inc. + +# This is the MIT license -@types/serve-static 1.15.5 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/serve-static +Copyright (c) 2015 Joyent Inc. All rights reserved. -Copyright (c) Microsoft Corporation +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: -MIT License +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. -Copyright (c) +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. -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: + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ci-info 3.9.0 - MIT +https://github.com/watson/ci-info + +Copyright (c) 2016 Thomas Watson Steen + +The MIT License (MIT) -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) 2016 Thomas Watson Steen -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. +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +clean-css 5.3.3 - MIT +https://github.com/clean-css/clean-css + +Copyright (c) 2017 JakubPawlowicz.com + +Copyright (C) 2017 JakubPawlowicz.com -@types/sockjs 0.3.36 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sockjs +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: -Copyright (c) Microsoft Corporation +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +clean-stack 2.2.0 - MIT +https://github.com/sindresorhus/clean-stack#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/unist 2.0.10 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/unist - -Copyright (c) Microsoft Corporation - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cli-boxes 3.0.0 - MIT +https://github.com/sindresorhus/cli-boxes#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/unist 3.0.2 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/unist - -Copyright (c) Microsoft Corporation - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cli-table3 0.6.3 - MIT +https://github.com/cli-table/cli-table3 + +Copyright (c) 2010 LearnBoost +Copyright (c) 2014 James Talmage + MIT License -Copyright (c) - -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: +Copyright (c) 2014 James Talmage -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +clone-deep 4.0.1 - MIT +https://github.com/jonschlinkert/clone-deep + +Copyright (c) 2014-2018, Jon Schlinkert +Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) ---------------------------------------------------------- +Copyright (c) 2014-2018, Jon Schlinkert. -@types/ws 8.5.10 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ws +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: -Copyright (c) Microsoft Corporation +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +clsx 2.0.0 - MIT +https://github.com/lukeed/clsx#readme + +(c) Luke Edwards (https://lukeed.com) +Copyright (c) Luke Edwards (lukeed.com) + MIT License -Copyright (c) +Copyright (c) Luke Edwards (lukeed.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +collapse-white-space 2.1.0 - MIT +https://github.com/wooorm/collapse-white-space#readme + + +(The MIT License) ---------------------------------------------------------- - ---------------------------------------------------------- - -@types/yargs 17.0.32 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/yargs - -Copyright (c) Microsoft Corporation - -MIT License - -Copyright (c) - -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: +Copyright (c) 2015 Titus Wormer -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +color-convert 2.0.1 - MIT +https://github.com/Qix-/color-convert#readme + +Copyright (c) 2011-2016, Heather Arthur and Josh Junon +Copyright (c) 2011-2016 Heather Arthur + +Copyright (c) 2011-2016 Heather Arthur ---------------------------------------------------------- +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: -@types/yargs-parser 21.0.3 - MIT -https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/yargs-parser +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -Copyright (c) Microsoft Corporation +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +colord 2.9.3 - MIT +https://github.com/omgovich/colord#readme + +Copyright (c) 2020 Vlad Shilov omgovich@ya.ru + MIT License -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/ast 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme +Copyright (c) 2020 Vlad Shilov omgovich@ya.ru +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: -MIT License +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -Copyright (c) +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +colorette 2.0.20 - MIT +https://github.com/jorgebucaran/colorette#readme + +Copyright (c) Jorge Bucaran + +Copyright © Jorge Bucaran <> -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: +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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/floating-point-hex-parser 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme - -Copyright (c) 2017 Mauro Bringolf - +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +color-name 1.1.4 - MIT +https://github.com/colorjs/color-name + +Copyright (c) 2015 Dmitry Ivanov + +The MIT License (MIT) +Copyright (c) 2015 Dmitry Ivanov + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +combine-promises 1.2.0 - MIT + + +Copyright (c) 2021 Sebastien Lorber + MIT License -Copyright (c) 2017 Mauro Bringolf +Copyright (c) 2021 Sébastien Lorber Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -50986,87 +53328,352 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +commander 10.0.1 - MIT +https://github.com/tj/commander.js#readme + +Copyright (c) 2011 TJ Holowaychuk + +(The MIT License) ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/helper-api-error 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme - +Copyright (c) 2011 TJ Holowaychuk -MIT License +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: -Copyright (c) +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -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: +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +commander 2.20.3 - MIT +https://github.com/tj/commander.js#readme + +Copyright (c) 2011 TJ Holowaychuk + +(The MIT License) -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) 2011 TJ Holowaychuk -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. +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +commander 5.1.0 - MIT +https://github.com/tj/commander.js#readme + +Copyright (c) 2011 TJ Holowaychuk + +(The MIT License) -@webassemblyjs/helper-buffer 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme +Copyright (c) 2011 TJ Holowaychuk +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: -MIT License +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -Copyright (c) +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +commander 7.2.0 - MIT +https://github.com/tj/commander.js#readme + +Copyright (c) 2011 TJ Holowaychuk + +(The MIT License) -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: +Copyright (c) 2011 TJ Holowaychuk -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +comma-separated-tokens 2.0.3 - MIT +https://github.com/wooorm/comma-separated-tokens#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + +(The MIT License) ---------------------------------------------------------- +Copyright (c) 2016 Titus Wormer -@webassemblyjs/helper-numbers 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme +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: +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -MIT License +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +compressible 2.0.18 - MIT +https://github.com/jshttp/compressible#readme + +Copyright (c) 2013 Jonathan Ong +Copyright (c) 2014 Jeremiah Senkpiel +Copyright (c) 2015 Douglas Christopher Wilson +Copyright (c) 2013 Jonathan Ong +Copyright (c) 2014 Jeremiah Senkpiel +Copyright (c) 2015 Douglas Christopher Wilson + +(The MIT License) -Copyright (c) +Copyright (c) 2013 Jonathan Ong +Copyright (c) 2014 Jeremiah Senkpiel +Copyright (c) 2015 Douglas Christopher Wilson -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: +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: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -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. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +compression 1.7.4 - MIT +https://github.com/expressjs/compression#readme + +Copyright (c) 2010 Sencha Inc. +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2011 TJ Holowaychuk +Copyright (c) 2014-2015 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2015 Douglas Christopher Wilson + +(The MIT License) ---------------------------------------------------------- +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2015 Douglas Christopher Wilson ---------------------------------------------------------- +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: -@webassemblyjs/helper-wasm-bytecode 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +concat-map 0.0.1 - MIT +https://github.com/substack/node-concat-map + + +This software is released under the MIT license: -MIT License +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: -Copyright (c) +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -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: +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +config-chain 1.1.13 - MIT +http://github.com/dominictarr/config-chain + +Copyright (c) 2011 Dominic Tarr + +Copyright (c) 2011 Dominic Tarr -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice +shall be included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +connect-history-api-fallback 2.0.0 - MIT +https://github.com/bripkens/connect-history-api-fallback#readme + +Copyright (c) 2022 Ben Blackmore and contributors + +The MIT License ---------------------------------------------------------- +Copyright (c) 2022 Ben Blackmore and contributors -@webassemblyjs/helper-wasm-section 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme +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: +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +consola 2.15.3 - MIT +https://github.com/nuxt/consola#readme + + MIT License Copyright (c) @@ -51075,106 +53682,188 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +content-disposition 0.5.2 - MIT +https://github.com/jshttp/content-disposition#readme + +Copyright (c) 2014 Douglas Christopher Wilson + +(The MIT License) ---------------------------------------------------------- +Copyright (c) 2014 Douglas Christopher Wilson ---------------------------------------------------------- +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: -@webassemblyjs/ieee754 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +content-disposition 0.5.4 - MIT +https://github.com/jshttp/content-disposition#readme + +Copyright (c) 2014-2017 Douglas Christopher Wilson + +(The MIT License) -MIT License +Copyright (c) 2014-2017 Douglas Christopher Wilson -Copyright (c) +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: -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/utf8 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme - - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/wasm-edit 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme - - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/wasm-gen 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme - - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +content-type 1.0.5 - MIT +https://github.com/jshttp/content-type#readme + +Copyright (c) 2015 Douglas Christopher Wilson + +(The MIT License) -@webassemblyjs/wasm-opt 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme +Copyright (c) 2015 Douglas Christopher Wilson +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: -MIT License +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -Copyright (c) +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +convert-source-map 2.0.0 - MIT +https://github.com/thlorenz/convert-source-map + +Copyright 2013 Thorsten Lorenz + +Copyright 2013 Thorsten Lorenz. +All rights reserved. -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: +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: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -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. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cookie 0.5.0 - MIT +https://github.com/jshttp/cookie#readme + +Copyright (c) 2012-2014 Roman Shtylman +Copyright (c) 2015 Douglas Christopher Wilson +Copyright (c) 2012-2014 Roman Shtylman +Copyright (c) 2015 Douglas Christopher Wilson + +(The MIT License) ---------------------------------------------------------- +Copyright (c) 2012-2014 Roman Shtylman +Copyright (c) 2015 Douglas Christopher Wilson ---------------------------------------------------------- +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: -@webassemblyjs/wasm-parser 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cookie-signature 1.0.6 - MIT +https://github.com/visionmedia/node-cookie-signature + +Copyright (c) 2012 LearnBoost + MIT License Copyright (c) @@ -51183,42 +53872,38 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -@webassemblyjs/wast-printer 1.11.6 - MIT -https://github.com/xtuc/webassemblyjs#readme - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +copy-text-to-clipboard 3.2.0 - MIT +https://github.com/sindresorhus/copy-text-to-clipboard#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -accepts 1.3.8 - MIT -https://github.com/jshttp/accepts#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2015 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2015 Douglas Christopher Wilson - -(The MIT License) - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2015 Douglas Christopher Wilson + + +--------------------------------------------------------- + +--------------------------------------------------------- + +copy-webpack-plugin 11.0.0 - MIT +https://github.com/webpack-contrib/copy-webpack-plugin + +Copyright JS Foundation and other contributors + +Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the @@ -51238,20 +53923,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -acorn 8.11.2 - MIT -https://github.com/acornjs/acorn - -Copyright (c) 2012-2022 by various contributors - -MIT License - -Copyright (C) 2012-2022 by various contributors (see AUTHORS) + + +--------------------------------------------------------- + +--------------------------------------------------------- + +core-js 3.34.0 - MIT +https://github.com/zloirock/core-js#readme + +Copyright (c) 2014-2023 Denis Pushkarev +copyright (c) 2014-2023 Denis Pushkarev + +Copyright (c) 2014-2023 Denis Pushkarev Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -51270,36 +53954,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -acorn-import-assertions 1.9.0 - MIT -https://github.com/xtuc/acorn-import-assertions#readme - - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -acorn-jsx 5.3.2 - MIT -https://github.com/acornjs/acorn-jsx - -Copyright (c) 2012-2017 by Ingvar Stepanyan - -Copyright (C) 2012-2017 by Ingvar Stepanyan + + +--------------------------------------------------------- + +--------------------------------------------------------- + +core-js-compat 3.34.0 - MIT +https://github.com/zloirock/core-js#readme + +Copyright (c) 2014-2023 Denis Pushkarev + +Copyright (c) 2014-2023 Denis Pushkarev Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -51318,20 +53984,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -acorn-walk 8.3.1 - MIT -https://github.com/acornjs/acorn - -Copyright (c) 2012-2020 by various contributors - -MIT License - -Copyright (C) 2012-2020 by various contributors (see AUTHORS) + + +--------------------------------------------------------- + +--------------------------------------------------------- + +core-js-pure 3.34.0 - MIT +https://github.com/zloirock/core-js#readme + +Copyright (c) 2014-2023 Denis Pushkarev +copyright (c) 2014-2023 Denis Pushkarev + +Copyright (c) 2014-2023 Denis Pushkarev Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -51350,28 +54015,24 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -address 1.2.2 - MIT -https://github.com/node-modules/address#readme - -Copyright (c) 2013 - 2014 fengmk2 -Copyright (c) 2015 - present node-modules and other contributors - -This software is licensed under the MIT License. - -Copyright (C) 2013 - 2014 fengmk2 -Copyright (C) 2015 - present node-modules and other contributors. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +core-util-is 1.0.3 - MIT +https://github.com/isaacs/core-util-is#readme + +Copyright Joyent, Inc. and other Node contributors + +Copyright Node.js contributors. All rights reserved. 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 +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: The above copyright notice and this permission notice shall be included in @@ -51381,43 +54042,23 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -aggregate-error 3.1.0 - MIT -https://github.com/sindresorhus/aggregate-error#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ajv 8.12.0 - MIT -https://ajv.js.org/ - -Copyright (c) 2015-2021 Evgeny Poberezkin - +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cosmiconfig 6.0.0 - MIT +https://github.com/davidtheclark/cosmiconfig#readme + +Copyright (c) 2015 David Clark + The MIT License (MIT) -Copyright (c) 2015-2021 Evgeny Poberezkin +Copyright (c) 2015 David Clark Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -51437,20 +54078,20 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cosmiconfig 7.1.0 - MIT +https://github.com/davidtheclark/cosmiconfig#readme + +Copyright (c) 2015 David Clark + +The MIT License (MIT) - ---------------------------------------------------------- - ---------------------------------------------------------- - -ajv-formats 2.1.1 - MIT -https://github.com/ajv-validator/ajv-formats#readme - -Copyright (c) 2020 Evgeny Poberezkin - -MIT License - -Copyright (c) 2020 Evgeny Poberezkin +Copyright (c) 2015 David Clark Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -51470,19 +54111,20 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -ajv-keywords 5.1.0 - MIT -https://github.com/epoberezkin/ajv-keywords#readme - -Copyright (c) 2016 Evgeny Poberezkin - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cosmiconfig 8.3.6 - MIT +https://github.com/cosmiconfig/cosmiconfig#readme + +Copyright (c) 2015 David Clark + The MIT License (MIT) -Copyright (c) 2016 Evgeny Poberezkin +Copyright (c) 2015 David Clark Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -51502,39 +54144,20 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -algoliasearch 4.22.0 - MIT - - -(c) Algolia, inc. https://github.com/algolia/algoliasearch-client-javascript - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -algoliasearch-helper 3.16.1 - MIT -https://community.algolia.com/algoliasearch-helper-js/ - -Copyright (c) 2015 Algolia -Copyright Joyent, Inc. and other Node contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cross-spawn 7.0.3 - MIT +https://github.com/moxystudio/node-cross-spawn + +Copyright (c) 2018 Made With MOXY Lda + The MIT License (MIT) -Copyright (c) 2015 Algolia +Copyright (c) 2018 Made With MOXY Lda Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -51543,123 +54166,276 @@ 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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. 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. - - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ansi-regex 5.0.1 - MIT -https://github.com/chalk/ansi-regex#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ansi-styles 4.3.0 - MIT -https://github.com/chalk/ansi-styles#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +crypto-random-string 4.0.0 - MIT +https://github.com/sindresorhus/crypto-random-string#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License -Copyright (c) Sindre Sorhus (sindresorhus.com) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cssesc 3.0.0 - MIT +https://mths.be/cssesc + +Copyright Mathias Bynens + +Copyright Mathias Bynens +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: ---------------------------------------------------------- - ---------------------------------------------------------- - -ansi-styles 6.2.1 - MIT -https://github.com/chalk/ansi-styles#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -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: +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +css-loader 6.8.1 - MIT +https://github.com/webpack-contrib/css-loader + +Copyright JS Foundation and other contributors + +Copyright JS Foundation and other contributors -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. +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: +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +css-minimizer-webpack-plugin 4.2.2 - MIT +https://github.com/webpack-contrib/css-minimizer-webpack-plugin + +Copyright JS Foundation and other contributors + +Copyright JS Foundation and other contributors ---------------------------------------------------------- +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: -arg 5.0.2 - MIT -https://github.com/vercel/arg#readme +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -Copyright (c) 2021 Vercel, Inc. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +cssnano 5.1.15 - MIT +https://github.com/cssnano/cssnano + +Copyright (c) Ben Briggs (http://beneb.info) + +Copyright (c) Ben Briggs (http://beneb.info) -The MIT License (MIT) +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: -Copyright (c) 2021 Vercel, Inc. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -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: +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cssnano-preset-advanced 5.3.10 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + +Copyright (c) Ben Briggs (http://beneb.info) -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cssnano-preset-default 5.2.14 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + +Copyright (c) Ben Briggs (http://beneb.info) ---------------------------------------------------------- +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -array-flatten 1.1.1 - MIT -https://github.com/blakeembrey/array-flatten +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +cssnano-utils 3.1.0 - MIT +https://github.com/cssnano/cssnano + +Copyright (c) Ben Briggs (http://beneb.info) + +Copyright (c) Ben Briggs (http://beneb.info) -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) +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: -The MIT License (MIT) +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +csso 4.2.0 - MIT +https://github.com/css/csso + +Copyright (c) 2015-2019 by Roman Dvornov +Copyright (c) 2011-2015 by Sergey Kryzhanovsky + +Copyright (C) 2015-2019 by Roman Dvornov +Copyright (C) 2011-2015 by Sergey Kryzhanovsky Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -51678,20 +54454,21 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -array-flatten 2.1.2 - MIT -https://github.com/blakeembrey/array-flatten - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - -The MIT License (MIT) - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + + +--------------------------------------------------------- + +--------------------------------------------------------- + +css-tree 1.1.3 - MIT +https://github.com/csstree/csstree#readme + +Copyright (c) 2016-2019 by Roman Dvornov +Copyright 2011 The Closure Compiler Authors +Copyright 2011 Mozilla Foundation and contributors +Copyright 2014 Mozilla Foundation and contributors + +Copyright (C) 2016-2019 by Roman Dvornov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -51707,6241 +54484,848 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -array-union 2.1.0 - MIT -https://github.com/sindresorhus/array-union#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -astring 1.8.6 - MIT -https://github.com/davidbonnet/astring#readme - -Copyright (c) 2015, David Bonnet - -Copyright (c) 2015, David Bonnet - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -autoprefixer 10.4.16 - MIT -https://github.com/postcss/autoprefixer#readme - -Copyright 2013 Andrey Sitnik - -The MIT License (MIT) - -Copyright 2013 Andrey Sitnik - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -babel-loader 9.1.3 - MIT -https://github.com/babel/babel-loader - -Copyright (c) 2014-2019 Luis Couto - -Copyright (c) 2014-2019 Luís Couto - -MIT License - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -babel-plugin-dynamic-import-node 2.3.3 - MIT -https://github.com/airbnb/babel-plugin-dynamic-import-node#readme - -Copyright (c) 2016 Airbnb - -MIT License - -Copyright (c) 2016 Airbnb - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -babel-plugin-polyfill-corejs2 0.4.7 - MIT -https://github.com/babel/babel-polyfills#readme - -Copyright (c) 2014-present Nicolo Ribaudo and other contributors - -MIT License - -Copyright (c) 2014-present Nicolò Ribaudo and other contributors - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -babel-plugin-polyfill-corejs3 0.8.7 - MIT -https://github.com/babel/babel-polyfills#readme - -Copyright (c) 2014-present Nicolo Ribaudo and other contributors - -MIT License - -Copyright (c) 2014-present Nicolò Ribaudo and other contributors - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -babel-plugin-polyfill-regenerator 0.5.4 - MIT -https://github.com/babel/babel-polyfills#readme - -Copyright (c) 2014-present Nicolo Ribaudo and other contributors - -MIT License - -Copyright (c) 2014-present Nicolò Ribaudo and other contributors - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -bail 2.0.2 - MIT -https://github.com/wooorm/bail#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - -(The MIT License) - -Copyright (c) 2015 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -balanced-match 1.0.2 - MIT -https://github.com/juliangruber/balanced-match - -Copyright (c) 2013 Julian Gruber - -(MIT) - -Copyright (c) 2013 Julian Gruber <julian@juliangruber.com> - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -batch 0.6.1 - MIT -https://github.com/visionmedia/batch#readme - -Copyright (c) 2013 TJ Holowaychuk - -(The MIT License) - -Copyright (c) 2013 TJ Holowaychuk - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -big.js 5.2.2 - MIT -https://github.com/MikeMcl/big.js#readme - -Copyright (c) 2018 Michael Mclaughlin -Copyright (c) 2018 Michael Mclaughlin https://github.com/MikeMcl/big.js/LICENCE - -The MIT Licence (Expat). - -Copyright (c) 2018 Michael Mclaughlin - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - - ---------------------------------------------------------- - ---------------------------------------------------------- - -binary-extensions 2.2.0 - MIT -https://github.com/sindresorhus/binary-extensions#readme - -Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com) - -MIT License - -Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -body-parser 1.20.1 - MIT -https://github.com/expressjs/body-parser#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014-2015 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014-2015 Douglas Christopher Wilson - -(The MIT License) - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014-2015 Douglas Christopher Wilson - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -bonjour-service 1.1.1 - MIT -https://github.com/onlxltd/bonjour-service - -(c) 2021 ON LX Limited -(c) 2015-2016 Thomas Watson Steen -Copyright (https://github.com/onlxltd/bonjour-service) - -The MIT License (MIT) - -Copyright (https://github.com/onlxltd/bonjour-service) (c) 2021 ON LX Limited - -Portions Copyright (Bonjour - https://github.com/watson/bonjour) (c) 2015-2016 Thomas Watson Steen - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -boxen 6.2.1 - MIT -https://github.com/sindresorhus/boxen#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -boxen 7.1.1 - MIT -https://github.com/sindresorhus/boxen#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -brace-expansion 1.1.11 - MIT -https://github.com/juliangruber/brace-expansion - -Copyright (c) 2013 Julian Gruber - -MIT License - -Copyright (c) 2013 Julian Gruber - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -braces 3.0.2 - MIT -https://github.com/micromatch/braces - -Copyright (c) 2014-2018, Jon Schlinkert -Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) - -The MIT License (MIT) - -Copyright (c) 2014-2018, Jon Schlinkert. - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -browserslist 4.22.2 - MIT -https://github.com/browserslist/browserslist#readme - -Copyright 2014 Andrey Sitnik and other contributors - -The MIT License (MIT) - -Copyright 2014 Andrey Sitnik and other contributors - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -buffer-from 1.1.2 - MIT -https://github.com/LinusU/buffer-from#readme - -Copyright (c) 2016, 2018 Linus Unneback - -MIT License - -Copyright (c) 2016, 2018 Linus Unnebäck - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -bytes 3.0.0 - MIT -https://github.com/visionmedia/bytes.js#readme - -Copyright (c) 2015 Jed Watson -Copyright (c) 2012-2014 TJ Holowaychuk -Copyright (c) 2015 Jed Watson -Copyright (c) 2012-2014 TJ Holowaychuk - -(The MIT License) - -Copyright (c) 2012-2014 TJ Holowaychuk -Copyright (c) 2015 Jed Watson - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -bytes 3.1.2 - MIT -https://github.com/visionmedia/bytes.js#readme - -Copyright (c) 2015 Jed Watson -Copyright (c) 2012-2014 TJ Holowaychuk -Copyright (c) 2015 Jed Watson -Copyright (c) 2012-2014 TJ Holowaychuk - -(The MIT License) - -Copyright (c) 2012-2014 TJ Holowaychuk -Copyright (c) 2015 Jed Watson - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cacheable-lookup 7.0.0 - MIT -https://github.com/szmarczak/cacheable-lookup#readme - -Copyright (c) 2019 Szymon Marczak - -MIT License - -Copyright (c) 2019 Szymon Marczak - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cacheable-request 10.2.14 - MIT - - -(c) Luke Childs 2017-2021 and Jared Wray 2022 - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -call-bind 1.0.5 - MIT -https://github.com/ljharb/call-bind#readme - -Copyright (c) 2020 Jordan Harband - -MIT License - -Copyright (c) 2020 Jordan Harband - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -callsites 3.1.0 - MIT -https://github.com/sindresorhus/callsites#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -camelcase 6.3.0 - MIT -https://github.com/sindresorhus/camelcase#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -camel-case 4.1.2 - MIT -https://github.com/blakeembrey/change-case/tree/master/packages/camel-case#readme - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - -The MIT License (MIT) - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -caniuse-api 3.0.0 - MIT -https://github.com/nyalab/caniuse-api#readme - -Copyright (c) 2014 Sebastien Balayn - -The MIT License (MIT) - -Copyright (c) 2014 Sébastien Balayn - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ccount 2.0.1 - MIT -https://github.com/wooorm/ccount#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - -(The MIT License) - -Copyright (c) 2015 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -chalk 2.4.2 - MIT -https://github.com/chalk/chalk#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -chalk 4.1.2 - MIT -https://github.com/chalk/chalk#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -chalk 5.3.0 - MIT -https://github.com/chalk/chalk#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -character-entities 2.0.2 - MIT -https://github.com/wooorm/character-entities#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - -(The MIT License) - -Copyright (c) 2015 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -character-entities-html4 2.1.0 - MIT -https://github.com/wooorm/character-entities-html4#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - -(The MIT License) - -Copyright (c) 2015 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -character-entities-legacy 3.0.0 - MIT -https://github.com/wooorm/character-entities-legacy#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - -(The MIT License) - -Copyright (c) 2015 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -character-reference-invalid 2.0.1 - MIT -https://github.com/wooorm/character-reference-invalid#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - -(The MIT License) - -Copyright (c) 2015 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -char-regex 1.0.2 - MIT - - -Copyright (c) 2019 Richie Bendall - -MIT License - -Copyright (c) 2019 Richie Bendall - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cheerio 1.0.0-rc.12 - MIT -https://cheerio.js.org/ - -Copyright (c) 2022 The Cheerio contributors - -MIT License - -Copyright (c) 2022 The Cheerio contributors - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -chokidar 3.5.3 - MIT -https://github.com/paulmillr/chokidar - -(c) Paul Miller -Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker - -The MIT License (MIT) - -Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -chrome-trace-event 1.0.3 - MIT -https://github.com/samccone/chrome-trace-event#readme - -Copyright (c) 2015 Joyent Inc. - -# This is the MIT license - -Copyright (c) 2015 Joyent Inc. All rights reserved. - -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: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -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. - - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ci-info 3.9.0 - MIT -https://github.com/watson/ci-info - -Copyright (c) 2016 Thomas Watson Steen - -The MIT License (MIT) - -Copyright (c) 2016 Thomas Watson Steen - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -clean-css 5.3.3 - MIT -https://github.com/clean-css/clean-css - -Copyright (c) 2017 JakubPawlowicz.com - -Copyright (C) 2017 JakubPawlowicz.com - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -clean-stack 2.2.0 - MIT -https://github.com/sindresorhus/clean-stack#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cli-boxes 3.0.0 - MIT -https://github.com/sindresorhus/cli-boxes#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cli-table3 0.6.3 - MIT -https://github.com/cli-table/cli-table3 - -Copyright (c) 2010 LearnBoost -Copyright (c) 2014 James Talmage - -MIT License - -Copyright (c) 2014 James Talmage - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -clone-deep 4.0.1 - MIT -https://github.com/jonschlinkert/clone-deep - -Copyright (c) 2014-2018, Jon Schlinkert -Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) - -The MIT License (MIT) - -Copyright (c) 2014-2018, Jon Schlinkert. - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -clsx 2.0.0 - MIT -https://github.com/lukeed/clsx#readme - -(c) Luke Edwards (https://lukeed.com) -Copyright (c) Luke Edwards (lukeed.com) - -MIT License - -Copyright (c) Luke Edwards (lukeed.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -collapse-white-space 2.1.0 - MIT -https://github.com/wooorm/collapse-white-space#readme - - -(The MIT License) - -Copyright (c) 2015 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -color-convert 2.0.1 - MIT -https://github.com/Qix-/color-convert#readme - -Copyright (c) 2011-2016, Heather Arthur and Josh Junon -Copyright (c) 2011-2016 Heather Arthur - -Copyright (c) 2011-2016 Heather Arthur - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - - ---------------------------------------------------------- - ---------------------------------------------------------- - -colord 2.9.3 - MIT -https://github.com/omgovich/colord#readme - -Copyright (c) 2020 Vlad Shilov omgovich@ya.ru - -MIT License - -Copyright (c) 2020 Vlad Shilov omgovich@ya.ru - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -colorette 2.0.20 - MIT -https://github.com/jorgebucaran/colorette#readme - -Copyright (c) Jorge Bucaran - -Copyright © Jorge Bucaran <> - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -color-name 1.1.4 - MIT -https://github.com/colorjs/color-name - -Copyright (c) 2015 Dmitry Ivanov - -The MIT License (MIT) -Copyright (c) 2015 Dmitry Ivanov - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -combine-promises 1.2.0 - MIT - - -Copyright (c) 2021 Sebastien Lorber - -MIT License - -Copyright (c) 2021 Sébastien Lorber - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -commander 10.0.1 - MIT -https://github.com/tj/commander.js#readme - -Copyright (c) 2011 TJ Holowaychuk - -(The MIT License) - -Copyright (c) 2011 TJ Holowaychuk - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -commander 2.20.3 - MIT -https://github.com/tj/commander.js#readme - -Copyright (c) 2011 TJ Holowaychuk - -(The MIT License) - -Copyright (c) 2011 TJ Holowaychuk - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -commander 5.1.0 - MIT -https://github.com/tj/commander.js#readme - -Copyright (c) 2011 TJ Holowaychuk - -(The MIT License) - -Copyright (c) 2011 TJ Holowaychuk - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -commander 7.2.0 - MIT -https://github.com/tj/commander.js#readme - -Copyright (c) 2011 TJ Holowaychuk - -(The MIT License) - -Copyright (c) 2011 TJ Holowaychuk - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -comma-separated-tokens 2.0.3 - MIT -https://github.com/wooorm/comma-separated-tokens#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - -(The MIT License) - -Copyright (c) 2016 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -compressible 2.0.18 - MIT -https://github.com/jshttp/compressible#readme - -Copyright (c) 2013 Jonathan Ong -Copyright (c) 2014 Jeremiah Senkpiel -Copyright (c) 2015 Douglas Christopher Wilson -Copyright (c) 2013 Jonathan Ong -Copyright (c) 2014 Jeremiah Senkpiel -Copyright (c) 2015 Douglas Christopher Wilson - -(The MIT License) - -Copyright (c) 2013 Jonathan Ong -Copyright (c) 2014 Jeremiah Senkpiel -Copyright (c) 2015 Douglas Christopher Wilson - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -compression 1.7.4 - MIT -https://github.com/expressjs/compression#readme - -Copyright (c) 2010 Sencha Inc. -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2011 TJ Holowaychuk -Copyright (c) 2014-2015 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014-2015 Douglas Christopher Wilson - -(The MIT License) - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014-2015 Douglas Christopher Wilson - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -concat-map 0.0.1 - MIT -https://github.com/substack/node-concat-map - - -This software is released under the MIT license: - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -config-chain 1.1.13 - MIT -http://github.com/dominictarr/config-chain - -Copyright (c) 2011 Dominic Tarr - -Copyright (c) 2011 Dominic Tarr - -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: - -The above copyright notice and this permission notice -shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -connect-history-api-fallback 2.0.0 - MIT -https://github.com/bripkens/connect-history-api-fallback#readme - -Copyright (c) 2022 Ben Blackmore and contributors - -The MIT License - -Copyright (c) 2022 Ben Blackmore and contributors - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -consola 2.15.3 - MIT -https://github.com/nuxt/consola#readme - - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -content-disposition 0.5.2 - MIT -https://github.com/jshttp/content-disposition#readme - -Copyright (c) 2014 Douglas Christopher Wilson - -(The MIT License) - -Copyright (c) 2014 Douglas Christopher Wilson - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -content-disposition 0.5.4 - MIT -https://github.com/jshttp/content-disposition#readme - -Copyright (c) 2014-2017 Douglas Christopher Wilson - -(The MIT License) - -Copyright (c) 2014-2017 Douglas Christopher Wilson - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -content-type 1.0.5 - MIT -https://github.com/jshttp/content-type#readme - -Copyright (c) 2015 Douglas Christopher Wilson - -(The MIT License) - -Copyright (c) 2015 Douglas Christopher Wilson - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -convert-source-map 2.0.0 - MIT -https://github.com/thlorenz/convert-source-map - -Copyright 2013 Thorsten Lorenz - -Copyright 2013 Thorsten Lorenz. -All rights reserved. - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cookie 0.5.0 - MIT -https://github.com/jshttp/cookie#readme - -Copyright (c) 2012-2014 Roman Shtylman -Copyright (c) 2015 Douglas Christopher Wilson -Copyright (c) 2012-2014 Roman Shtylman -Copyright (c) 2015 Douglas Christopher Wilson - -(The MIT License) - -Copyright (c) 2012-2014 Roman Shtylman -Copyright (c) 2015 Douglas Christopher Wilson - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cookie-signature 1.0.6 - MIT -https://github.com/visionmedia/node-cookie-signature - -Copyright (c) 2012 LearnBoost - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -copy-text-to-clipboard 3.2.0 - MIT -https://github.com/sindresorhus/copy-text-to-clipboard#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -copy-webpack-plugin 11.0.0 - MIT -https://github.com/webpack-contrib/copy-webpack-plugin - -Copyright JS Foundation and other contributors - -Copyright JS Foundation and other contributors - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -core-js 3.34.0 - MIT -https://github.com/zloirock/core-js#readme - -Copyright (c) 2014-2023 Denis Pushkarev -copyright (c) 2014-2023 Denis Pushkarev - -Copyright (c) 2014-2023 Denis Pushkarev - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -core-js-compat 3.34.0 - MIT -https://github.com/zloirock/core-js#readme - -Copyright (c) 2014-2023 Denis Pushkarev - -Copyright (c) 2014-2023 Denis Pushkarev - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -core-js-pure 3.34.0 - MIT -https://github.com/zloirock/core-js#readme - -Copyright (c) 2014-2023 Denis Pushkarev -copyright (c) 2014-2023 Denis Pushkarev - -Copyright (c) 2014-2023 Denis Pushkarev - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -core-util-is 1.0.3 - MIT -https://github.com/isaacs/core-util-is#readme - -Copyright Joyent, Inc. and other Node contributors - -Copyright Node.js contributors. All rights reserved. - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cosmiconfig 6.0.0 - MIT -https://github.com/davidtheclark/cosmiconfig#readme - -Copyright (c) 2015 David Clark - -The MIT License (MIT) - -Copyright (c) 2015 David Clark - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cosmiconfig 7.1.0 - MIT -https://github.com/davidtheclark/cosmiconfig#readme - -Copyright (c) 2015 David Clark - -The MIT License (MIT) - -Copyright (c) 2015 David Clark - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cosmiconfig 8.3.6 - MIT -https://github.com/cosmiconfig/cosmiconfig#readme - -Copyright (c) 2015 David Clark - -The MIT License (MIT) - -Copyright (c) 2015 David Clark - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cross-spawn 7.0.3 - MIT -https://github.com/moxystudio/node-cross-spawn - -Copyright (c) 2018 Made With MOXY Lda - -The MIT License (MIT) - -Copyright (c) 2018 Made With MOXY Lda - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -crypto-random-string 4.0.0 - MIT -https://github.com/sindresorhus/crypto-random-string#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cssesc 3.0.0 - MIT -https://mths.be/cssesc - -Copyright Mathias Bynens - -Copyright Mathias Bynens - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -css-loader 6.8.1 - MIT -https://github.com/webpack-contrib/css-loader - -Copyright JS Foundation and other contributors - -Copyright JS Foundation and other contributors - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -css-minimizer-webpack-plugin 4.2.2 - MIT -https://github.com/webpack-contrib/css-minimizer-webpack-plugin - -Copyright JS Foundation and other contributors - -Copyright JS Foundation and other contributors - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -cssnano 5.1.15 - MIT -https://github.com/cssnano/cssnano - -Copyright (c) Ben Briggs (http://beneb.info) - -Copyright (c) Ben Briggs (http://beneb.info) - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cssnano-preset-advanced 5.3.10 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - -Copyright (c) Ben Briggs (http://beneb.info) - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cssnano-preset-default 5.2.14 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - -Copyright (c) Ben Briggs (http://beneb.info) - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -cssnano-utils 3.1.0 - MIT -https://github.com/cssnano/cssnano - -Copyright (c) Ben Briggs (http://beneb.info) - -Copyright (c) Ben Briggs (http://beneb.info) - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -csso 4.2.0 - MIT -https://github.com/css/csso - -Copyright (c) 2015-2019 by Roman Dvornov -Copyright (c) 2011-2015 by Sergey Kryzhanovsky - -Copyright (C) 2015-2019 by Roman Dvornov -Copyright (C) 2011-2015 by Sergey Kryzhanovsky - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -css-tree 1.1.3 - MIT -https://github.com/csstree/csstree#readme - -Copyright (c) 2016-2019 by Roman Dvornov -Copyright 2011 The Closure Compiler Authors -Copyright 2011 Mozilla Foundation and contributors -Copyright 2014 Mozilla Foundation and contributors - -Copyright (C) 2016-2019 by Roman Dvornov - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -csstype 3.1.3 - MIT -https://github.com/frenic/csstype#readme - -Copyright (c) 2017-2018 Fredrik Nicol - -Copyright (c) 2017-2018 Fredrik Nicol - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -debounce 1.2.1 - MIT -https://github.com/component/debounce#readme - -Copyright (c) 2012-2018 The Debounce Contributors - -MIT License - -Copyright (c) 2012-2018 The Debounce Contributors. See CONTRIBUTORS. - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -debug 2.6.9 - MIT -https://github.com/visionmedia/debug#readme - -Copyright (c) 2014 TJ Holowaychuk -Copyright (c) 2014-2016 TJ Holowaychuk - -(The MIT License) - -Copyright (c) 2014 TJ Holowaychuk - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial -portions of the Software. - -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. - - - ---------------------------------------------------------- - ---------------------------------------------------------- - -debug 4.3.4 - MIT -https://github.com/debug-js/debug#readme - -Copyright (c) 2018-2021 Josh Junon -Copyright (c) 2014-2017 TJ Holowaychuk - -(The MIT License) - -Copyright (c) 2014-2017 TJ Holowaychuk -Copyright (c) 2018-2021 Josh Junon - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial -portions of the Software. - -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. - - - ---------------------------------------------------------- - ---------------------------------------------------------- - -decode-named-character-reference 1.0.2 - MIT -https://github.com/wooorm/decode-named-character-reference#readme - -(c) Titus Wormer -Copyright (c) 2021 Titus Wormer - -(The MIT License) - -Copyright (c) 2021 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -decompress-response 6.0.0 - MIT -https://github.com/sindresorhus/decompress-response#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -deep-extend 0.6.0 - MIT -https://github.com/unclechu/node-deep-extend - -Copyright (c) 2013-2018 Viacheslav Lotsmanov -Copyright (c) 2013-2018, Viacheslav Lotsmanov - -The MIT License (MIT) - -Copyright (c) 2013-2018, Viacheslav Lotsmanov - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -deepmerge 4.3.1 - MIT -https://github.com/TehShrike/deepmerge - -Copyright (c) 2012 James Halliday, Josh Duff, and other contributors - -The MIT License (MIT) - -Copyright (c) 2012 James Halliday, Josh Duff, and other contributors - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -defer-to-connect 2.0.1 - MIT -https://github.com/szmarczak/defer-to-connect#readme - -Copyright (c) 2018 Szymon Marczak - -MIT License - -Copyright (c) 2018 Szymon Marczak - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -define-data-property 1.1.1 - MIT -https://github.com/ljharb/define-data-property#readme - -Copyright (c) 2023 Jordan Harband - -MIT License - -Copyright (c) 2023 Jordan Harband - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -define-lazy-prop 2.0.0 - MIT -https://github.com/sindresorhus/define-lazy-prop#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -define-properties 1.2.1 - MIT -https://github.com/ljharb/define-properties#readme - -Copyright (c) 2015 Jordan Harband - -The MIT License (MIT) - -Copyright (C) 2015 Jordan Harband - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -del 6.1.1 - MIT -https://github.com/sindresorhus/del#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -depd 2.0.0 - MIT -https://github.com/dougwilson/nodejs-depd#readme - -Copyright (c) 2015 Douglas Christopher Wilson -Copyright (c) 2014-2018 Douglas Christopher Wilson - -(The MIT License) - -Copyright (c) 2014-2018 Douglas Christopher Wilson - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -dequal 2.0.3 - MIT -https://github.com/lukeed/dequal#readme - -(c) Luke Edwards (https://lukeed.com) -Copyright (c) Luke Edwards (lukeed.com) - -The MIT License (MIT) - -Copyright (c) Luke Edwards (lukeed.com) - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -destroy 1.2.0 - MIT -https://github.com/stream-utils/destroy#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014 Jonathan Ong me@jongleberry.com -Copyright (c) 2015-2022 Douglas Christopher Wilson -Copyright (c) 2015-2022 Douglas Christopher Wilson doug@somethingdoug.com - - -The MIT License (MIT) - -Copyright (c) 2014 Jonathan Ong me@jongleberry.com -Copyright (c) 2015-2022 Douglas Christopher Wilson doug@somethingdoug.com - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -detect-node 2.1.0 - MIT -https://github.com/iliakan/detect-node - -Copyright (c) 2017 Ilya Kantor - -MIT License - -Copyright (c) 2017 Ilya Kantor - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -detect-port 1.5.1 - MIT -https://github.com/node-modules/detect-port - -Copyright (c) 2014 - present node-modules and other contributors - -The MIT License (MIT) - -Copyright (c) 2014 - present node-modules and other contributors - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -detect-port-alt 1.1.6 - MIT -https://github.com/node-modules/detect-port - -Copyright (c) 2015 xdf - -The MIT License (MIT) - -Copyright (c) 2015 xdf - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -devlop 1.1.0 - MIT -https://github.com/wooorm/devlop#readme - -(c) Titus Wormer -Copyright (c) 2023 Titus Wormer - -(The MIT License) - -Copyright (c) 2023 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -dir-glob 3.0.1 - MIT -https://github.com/kevva/dir-glob#readme - -Copyright (c) Kevin Martensson - -MIT License - -Copyright (c) Kevin Mårtensson (github.com/kevva) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -dns-equal 1.0.0 - MIT -https://github.com/watson/dns-equal#readme - -Copyright (c) 2016 Thomas Watson Steen - -The MIT License (MIT) - -Copyright (c) 2016 Thomas Watson Steen - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -dns-packet 5.6.1 - MIT -https://github.com/mafintosh/dns-packet - -Copyright (c) 2016 Mathias Buus - -The MIT License (MIT) - -Copyright (c) 2016 Mathias Buus - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -dom-converter 0.2.0 - MIT -https://github.com/AriaMinaei/dom-converter#readme - -Copyright (c) 2013 Aria Minaei - -The MIT License (MIT) - -Copyright (c) 2013 Aria Minaei - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -dom-serializer 2.0.0 - MIT -https://github.com/cheeriojs/dom-serializer#readme - -Copyright (c) 2014 The cheeriojs contributors - -License - -(The MIT License) - -Copyright (c) 2014 The cheeriojs contributors - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -dot-case 3.0.4 - MIT -https://github.com/blakeembrey/change-case/tree/master/packages/dot-case#readme - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - -The MIT License (MIT) - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -dot-prop 6.0.1 - MIT -https://github.com/sindresorhus/dot-prop#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -duplexer 0.1.2 - MIT -https://github.com/Raynos/duplexer - -Copyright (c) 2012 Raynos - -Copyright (c) 2012 Raynos. - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -eastasianwidth 0.2.0 - MIT -https://github.com/komagata/eastasianwidth#readme - - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -ee-first 1.1.1 - MIT -https://github.com/jonathanong/ee-first - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014 Jonathan Ong me@jongleberry.com - - -The MIT License (MIT) - -Copyright (c) 2014 Jonathan Ong me@jongleberry.com - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -emojilib 2.4.0 - MIT -https://github.com/muan/emojilib#readme - -Copyright (c) 2014 Mu-An Chiou - -The MIT License (MIT) - -Copyright (c) 2014 Mu-An Chiou - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -emoji-regex 9.2.2 - MIT -https://mths.be/emoji-regex - -Copyright Mathias Bynens - -Copyright Mathias Bynens - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -emojis-list 3.0.0 - MIT -https://nidecoc.io/Kikobeats/emojis-list - -Copyright (c) 2015 Kiko Beats -(c) Kiko Beats (http://www.kikobeats.com) - -The MIT License (MIT) - -Copyright © 2015 Kiko Beats - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -emoticon 4.0.1 - MIT -https://github.com/wooorm/emoticon#readme - -(c) Titus Wormer -Copyright (c) 2014 Titus Wormer - -(The MIT License) - -Copyright (c) 2014 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -encodeurl 1.0.2 - MIT -https://github.com/pillarjs/encodeurl#readme - -Copyright (c) 2016 Douglas Christopher Wilson - -(The MIT License) - -Copyright (c) 2016 Douglas Christopher Wilson - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -enhanced-resolve 5.15.0 - MIT -http://github.com/webpack/enhanced-resolve - -Copyright JS Foundation and other contributors -Copyright (c) 2012-2019 JS Foundation and other contributors - -Copyright JS Foundation and other contributors - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -error-ex 1.3.2 - MIT -https://github.com/qix-/node-error-ex#readme - -Copyright (c) 2015 JD Ballard - -The MIT License (MIT) - -Copyright (c) 2015 JD Ballard - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -escalade 3.1.1 - MIT -https://github.com/lukeed/escalade#readme - -(c) Luke Edwards (https://lukeed.com) -Copyright (c) Luke Edwards (lukeed.com) - -MIT License - -Copyright (c) Luke Edwards (lukeed.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -escape-goat 4.0.0 - MIT -https://github.com/sindresorhus/escape-goat#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -escape-html 1.0.3 - MIT -https://github.com/component/escape-html - -Copyright (c) 2015 Andreas Lubbe -Copyright (c) 2012-2013 TJ Holowaychuk -Copyright (c) 2015 Tiancheng Timothy Gu - -(The MIT License) - -Copyright (c) 2012-2013 TJ Holowaychuk -Copyright (c) 2015 Andreas Lubbe -Copyright (c) 2015 Tiancheng "Timothy" Gu - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -escape-string-regexp 4.0.0 - MIT -https://github.com/sindresorhus/escape-string-regexp#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -escape-string-regexp 5.0.0 - MIT -https://github.com/sindresorhus/escape-string-regexp#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -es-module-lexer 1.4.1 - MIT -https://github.com/guybedford/es-module-lexer#readme - -Copyright (c) 2018-2022 Guy Bedford -Copyright (c) 2012-2020 by various contributors - -MIT License ------------ - -Copyright (C) 2018-2022 Guy Bedford - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -estree-util-attach-comments 3.0.0 - MIT -https://github.com/syntax-tree/estree-util-attach-comments#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - -(The MIT License) - -Copyright (c) 2020 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -estree-util-build-jsx 3.0.1 - MIT -https://github.com/syntax-tree/estree-util-build-jsx#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - -(The MIT License) - -Copyright (c) 2020 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -estree-util-is-identifier-name 3.0.0 - MIT -https://github.com/syntax-tree/estree-util-is-identifier-name#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - -(The MIT License) - -Copyright (c) 2020 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -estree-util-to-js 2.0.0 - MIT -https://github.com/syntax-tree/estree-util-to-js#readme - -(c) . We -(c) Titus Wormer -Copyright (c) 2022 Titus Wormer - -(The MIT License) - -Copyright (c) 2022 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -estree-util-value-to-estree 3.0.1 - MIT -https://github.com/remcohaszing/estree-util-value-to-estree#readme - -Copyright (c) 2021 Remco Haszing -(c) Remco Haszing (https://github.com/remcohaszing) - -# MIT License - -Copyright © 2021 Remco Haszing - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial -portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -estree-util-visit 2.0.0 - MIT -https://github.com/syntax-tree/estree-util-visit#readme - -(c) Titus Wormer -Copyright (c) 2021 Titus Wormer - -(The MIT License) - -Copyright (c) 2021 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -estree-walker 3.0.3 - MIT -https://github.com/Rich-Harris/estree-walker#readme - -Copyright (c) 2015-20 these people (https://github.com/Rich-Harris/estree-walker/graphs/contributors) - -Copyright (c) 2015-20 [these people](https://github.com/Rich-Harris/estree-walker/graphs/contributors) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -eta 2.2.0 - MIT -https://eta.js.org/ - -Copyright 2023 Ben Gubler - -Copyright 2023 Ben Gubler - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -etag 1.8.1 - MIT -https://github.com/jshttp/etag#readme - -Copyright (c) 2014-2016 Douglas Christopher Wilson - -(The MIT License) - -Copyright (c) 2014-2016 Douglas Christopher Wilson - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -eval 0.1.8 - MIT -http://github.com/pierrec/node-eval - -Copyright (c) 2012 Pierre Curto - -Copyright (c) 2012 Pierre Curto - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -eventemitter3 4.0.7 - MIT -https://github.com/primus/eventemitter3#readme - -Copyright (c) 2014 Arnout Kazemier - -The MIT License (MIT) - -Copyright (c) 2014 Arnout Kazemier - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -events 3.3.0 - MIT -https://github.com/Gozala/events#readme - -Copyright Joyent, Inc. and other Node contributors - -MIT - -Copyright Joyent, Inc. and other Node contributors. - -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: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -execa 5.1.1 - MIT -https://github.com/sindresorhus/execa#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -express 4.18.2 - MIT -http://expressjs.com/ - -Copyright (c) 2013 Roman Shtylman -Copyright (c) 2009-2013 TJ Holowaychuk -Copyright (c) 2014-2015 Douglas Christopher Wilson -Copyright (c) 2009-2014 TJ Holowaychuk -Copyright (c) 2013-2014 Roman Shtylman -Copyright (c) 2014-2015 Douglas Christopher Wilson - -(The MIT License) - -Copyright (c) 2009-2014 TJ Holowaychuk -Copyright (c) 2013-2014 Roman Shtylman -Copyright (c) 2014-2015 Douglas Christopher Wilson - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -extend 3.0.2 - MIT -https://github.com/justmoon/node-extend#readme - -Copyright (c) 2014 Stefan Thomas - -The MIT License (MIT) - -Copyright (c) 2014 Stefan Thomas - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - - ---------------------------------------------------------- - ---------------------------------------------------------- - -extend-shallow 2.0.1 - MIT -https://github.com/jonschlinkert/extend-shallow - -Copyright (c) 2015 Jon Schlinkert -Copyright (c) 2014-2015, Jon Schlinkert - -The MIT License (MIT) - -Copyright (c) 2014-2015, Jon Schlinkert. - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fast-deep-equal 3.1.3 - MIT -https://github.com/epoberezkin/fast-deep-equal#readme - -Copyright (c) 2017 Evgeny Poberezkin - -MIT License - -Copyright (c) 2017 Evgeny Poberezkin - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fast-glob 3.3.2 - MIT -https://github.com/mrmlnc/fast-glob#readme - -Copyright (c) Denis Malinochkin - -The MIT License (MIT) - -Copyright (c) Denis Malinochkin - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fast-url-parser 1.1.3 - MIT -https://github.com/petkaantonov/urlparser - -Copyright (c) 2014 Petka Antonov - -Copyright (c) 2014 Petka Antonov - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fault 2.0.1 - MIT -https://github.com/wooorm/fault#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - -(The MIT License) - -Copyright (c) 2015 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -feed 4.2.2 - MIT -https://github.com/jpmonette/feed - -copyright 2013, John -Copyright https://validator.w3.org/feed/docs/rss2.html -Copyright (c) 2013, Jean-Philippe Monette - -Copyright (C) 2013, Jean-Philippe Monette - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -file-loader 6.2.0 - MIT -https://github.com/webpack-contrib/file-loader - -Copyright JS Foundation and other contributors - -Copyright JS Foundation and other contributors - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fill-range 7.0.1 - MIT -https://github.com/jonschlinkert/fill-range - -Copyright (c) 2014-present, Jon Schlinkert -Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) - -The MIT License (MIT) - -Copyright (c) 2014-present, Jon Schlinkert. - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -finalhandler 1.2.0 - MIT -https://github.com/pillarjs/finalhandler#readme - -Copyright (c) 2014-2022 Douglas Christopher Wilson -Copyright (c) 2014-2022 Douglas Christopher Wilson - -(The MIT License) - -Copyright (c) 2014-2022 Douglas Christopher Wilson - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -find-cache-dir 4.0.0 - MIT -https://github.com/sindresorhus/find-cache-dir#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) James Talmage (https://github.com/jamestalmage) - -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) James Talmage (https://github.com/jamestalmage) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -find-up 3.0.0 - MIT -https://github.com/sindresorhus/find-up#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -find-up 5.0.0 - MIT -https://github.com/sindresorhus/find-up#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -find-up 6.3.0 - MIT -https://github.com/sindresorhus/find-up#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -follow-redirects 1.15.6 - MIT -https://github.com/follow-redirects/follow-redirects - -Copyright 2014-present Olivier Lalonde , James Talmage , Ruben Verborgh - -Copyright 2014–present Olivier Lalonde , James Talmage , Ruben Verborgh - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fork-ts-checker-webpack-plugin 6.5.3 - MIT -https://github.com/TypeStrong/fork-ts-checker-webpack-plugin#readme - -Copyright (c) 2020 TypeStrong - -MIT License - -Copyright (c) 2020 TypeStrong - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -format 0.2.2 - MIT -http://samhuri.net/proj/format - -Copyright 2010 - 2014 Sami Samhuri sami@samhuri.net -Copyright 2010 - 2013 Sami Samhuri - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -form-data-encoder 4.0.2 - MIT -https://github.com/octet-stream/form-data-encoder#readme - -Copyright (c) 2021-present Nick K. - -The MIT License (MIT) - -Copyright (c) 2021-present Nick K. - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -forwarded 0.2.0 - MIT -https://github.com/jshttp/forwarded#readme - -Copyright (c) 2014-2017 Douglas Christopher Wilson - -(The MIT License) - -Copyright (c) 2014-2017 Douglas Christopher Wilson - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fraction.js 4.3.7 - MIT -https://www.xarg.org/2014/03/rational-numbers-in-javascript/ - -Copyright (c) 2023 Robert Eisele -Copyright (c) 2023, Robert Eisele (robert@raw.org) -Copyright (c) 2023, Robert Eisele (https://raw.org/) - -MIT License - -Copyright (c) 2023 Robert Eisele - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fresh 0.5.2 - MIT -https://github.com/jshttp/fresh#readme - -Copyright (c) 2012 TJ Holowaychuk -Copyright (c) 2016-2017 Douglas Christopher Wilson -Copyright (c) 2012 TJ Holowaychuk -Copyright (c) 2016-2017 Douglas Christopher Wilson - -(The MIT License) - -Copyright (c) 2012 TJ Holowaychuk -Copyright (c) 2016-2017 Douglas Christopher Wilson - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fs-extra 11.2.0 - MIT -https://github.com/jprichardson/node-fs-extra - -Copyright (c) 2011-2017 JP Richardson -Copyright (c) 2011-2017 JP Richardson (https://github.com/jprichardson) -Copyright (c) Sindre Sorhus (sindresorhus.com) -Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and Contributors - -(The MIT License) - -Copyright (c) 2011-2017 JP Richardson - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fs-extra 9.1.0 - MIT -https://github.com/jprichardson/node-fs-extra - -Copyright (c) 2011-2017 JP Richardson -Copyright (c) 2011-2017 JP Richardson (https://github.com/jprichardson) -Copyright (c) Sindre Sorhus (sindresorhus.com) -Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and Contributors - -(The MIT License) - -Copyright (c) 2011-2017 JP Richardson - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -function-bind 1.1.2 - MIT -https://github.com/Raynos/function-bind - -Copyright (c) 2013 Raynos - -Copyright (c) 2013 Raynos. - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - - - ---------------------------------------------------------- - ---------------------------------------------------------- - -gensync 1.0.0-beta.2 - MIT -https://github.com/loganfsmyth/gensync - -Copyright 2018 Logan Smyth - -Copyright 2018 Logan Smyth - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -get-intrinsic 1.2.2 - MIT -https://github.com/ljharb/get-intrinsic#readme - -Copyright (c) 2020 Jordan Harband - -MIT License - -Copyright (c) 2020 Jordan Harband - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -get-stream 6.0.1 - MIT -https://github.com/sindresorhus/get-stream#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -get-stream 8.0.1 - MIT -https://github.com/sindresorhus/get-stream#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fagnivade/levenshtein v1.0.1 - MIT - - -Copyright (c) 2015 Agniva De Sarker - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fakavel/rsrc v0.10.2 - MIT - - -Copyright 2013-2020 The rsrc -Copyright (c) 2013-2017 The rsrc - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Falecthomas%2Fkingpin/v2 v2.4.0 - MIT - - -Copyright (c) 2014 Alec Thomas - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Falecthomas%2Fparticiple/v2 v2.0.0-beta.4 - MIT - - - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Falecthomas/units v0.0.0-20211218093645-b94a6e3cc137 - MIT - - -Copyright (c) 2014 Alec Thomas - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Farmon/circbuf v0.0.0-20150827004946-bbbad097214e - MIT - - -Copyright (c) 2013 Armon Dadgar - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Farmon/go-metrics v0.4.1 - MIT - - -Copyright (c) 2013 Armon Dadgar - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Farmon/go-radix v1.0.0 - MIT - - -Copyright (c) 2014 Armon Dadgar - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Farmon/go-socks5 v0.0.0-20160902184237-e75332964ef5 - MIT - - -Copyright (c) 2014 Armon Dadgar - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fasaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 - MIT - - -Copyright (c) 2014-2020 Alex Saskevich - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-container-networking/zapai v0.0.3 - MIT - - -Copyright (c) 2016 Microsoft Azure - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fcontainerservice%2Farmcontainerservice/v4 v4.7.0 - MIT - - -Copyright (c) Microsoft Corporation - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fdashboard/armdashboard v1.2.0 - MIT - - -Copyright (c) Microsoft Corporation - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Finternal/v2 v2.0.0 - MIT - - -Copyright (c) Microsoft Corporation - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fmanagementgroups/armmanagementgroups v1.0.0 - MIT - - -Copyright (c) Microsoft Corporation - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fmonitor/armmonitor v0.11.0 - MIT - - -Copyright (c) Microsoft Corporation - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fresources/armresources v1.2.0 - MIT - - -Copyright (c) Microsoft Corporation - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fstorage/armstorage v1.5.0 - MIT - - -Container (c) Access -Copyright (c) Microsoft Corporation - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fstorage/azblob v1.2.1 - MIT - - -Copyright (c) Microsoft Corporation - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk/azidentity v1.5.1 - MIT - - -Copyright (c) Microsoft Corporation - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk/internal v1.5.2 - MIT - - -(c) Val Thoermer/Alamy -Copyright (c) Microsoft Corporation -Copyright 2017 Microsoft Corporation - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure/azure-sdk-for-go v68.0.0+incompatible - MIT - - -(c) . GetQueueReference 'q -Copyright (c) Microsoft Corporation -Copyright Directive in France, the Bing Visual Search API - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazure/go-ansiterm v0.0.0-20230124172434-306776ec8161 - MIT - - -Copyright (c) 2015 Microsoft Corporation - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fazuread/microsoft-authentication-library-for-go v1.2.1 - MIT - - -Copyright (c) Microsoft Corporation - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fbenbjohnson/clock v1.1.0 - MIT - - -Copyright (c) 2014 Ben Johnson - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fbeorn7/perks v1.0.1 - MIT - - -Copyright (c) 2013 Blake Mizerany - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fblang%2Fsemver/v4 v4.0.0 - MIT - - -Copyright (c) 2014 Benedikt Lang - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fblang/semver v3.5.1+incompatible - MIT - - -Copyright (c) 2014 Benedikt Lang - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fbshuster-repo/logrus-logstash-hook v1.0.0 - MIT - - -Copyright (c) 2016 Boaz Shuster - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fbugsnag/bugsnag-go v0.0.0-20141110184014-b1d153021fcd - MIT - - -Copyright (c) 2014 Bugsnag - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fbugsnag/panicwrap v0.0.0-20151223152923-e2c28503fcd0 - MIT - - -Copyright (c) 2013 Mitchell Hashimoto - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fburntsushi/toml v1.3.2 - MIT - - -Copyright 2010 The Go Authors -Copyright (c) 2013 TOML authors -Copyright (c) 2018 TOML authors - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcakturk/go-netstat v0.0.0-20200220111822-e5b49efee7a5 - MIT - - -Copyright (c) 2018 Cihangir Akturk - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcenkalti%2Fbackoff/v4 v4.2.1 - MIT - - -Copyright (c) 2014 Cenk Alti - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcespare%2Fxxhash/v2 v2.2.0 - MIT - - -Copyright (c) 2016 Caleb Spare - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fchzyer/logex v1.1.10 - MIT - - - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fchzyer/readline v0.0.0-20180603132655-2972be24d48e - MIT - - -Copyright (c) 2015 Chzyer -Copyright 2011 The Go Authors -Copyright 2013 The Go Authors -Copyright (c) 2004 Sam Hocevar - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fchzyer/test v0.0.0-20180213035817-a1ea475d72b1 - MIT - - -Copyright (c) 2016 chzyer - -MIT License - -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fcilium%2Flumberjack/v2 v2.3.0 - MIT +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +csstype 3.1.3 - MIT +https://github.com/frenic/csstype#readme + +Copyright (c) 2017-2018 Fredrik Nicol + +Copyright (c) 2017-2018 Fredrik Nicol +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: -Copyright (c) 2014 Nate Finch +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +debounce 1.2.1 - MIT +https://github.com/component/debounce#readme + +Copyright (c) 2012-2018 The Debounce Contributors + MIT License -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) 2012-2018 The Debounce Contributors. See CONTRIBUTORS. -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. +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +debug 2.6.9 - MIT +https://github.com/visionmedia/debug#readme + +Copyright (c) 2014 TJ Holowaychuk +Copyright (c) 2014-2016 TJ Holowaychuk + +(The MIT License) -github.com%2Fclient9/misspell v0.3.4 - MIT +Copyright (c) 2014 TJ Holowaychuk +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: -copyright Nick Galbreath -Copyright 2009 The Go Authors -Copyright 2011 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright (c) 2015-2017 Nick Galbreath +The above copyright notice and this permission notice shall be included in all copies or substantial +portions of the Software. -MIT License +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. -Copyright (c) + + +--------------------------------------------------------- + +--------------------------------------------------------- + +debug 4.3.4 - MIT +https://github.com/debug-js/debug#readme + +Copyright (c) 2018-2021 Josh Junon +Copyright (c) 2014-2017 TJ Holowaychuk + +(The MIT License) -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: +Copyright (c) 2014-2017 TJ Holowaychuk +Copyright (c) 2018-2021 Josh Junon -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be included in all copies or substantial +portions of the Software. ---------------------------------------------------------- +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. ---------------------------------------------------------- + + +--------------------------------------------------------- + +--------------------------------------------------------- + +decode-named-character-reference 1.0.2 - MIT +https://github.com/wooorm/decode-named-character-reference#readme + +(c) Titus Wormer +Copyright (c) 2021 Titus Wormer + +(The MIT License) -github.com%2Fcpuguy83%2Fgo-md2man/v2 v2.0.3 - MIT +Copyright (c) 2021 Titus Wormer +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: -Copyright (c) 2014 Brian Goff +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +decompress-response 6.0.0 - MIT +https://github.com/sindresorhus/decompress-response#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +deep-extend 0.6.0 - MIT +https://github.com/unclechu/node-deep-extend + +Copyright (c) 2013-2018 Viacheslav Lotsmanov +Copyright (c) 2013-2018, Viacheslav Lotsmanov + +The MIT License (MIT) ---------------------------------------------------------- +Copyright (c) 2013-2018, Viacheslav Lotsmanov ---------------------------------------------------------- +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: -github.com%2Fcreack/pty v1.1.18 - MIT +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +deepmerge 4.3.1 - MIT +https://github.com/TehShrike/deepmerge + +Copyright (c) 2012 James Halliday, Josh Duff, and other contributors + +The MIT License (MIT) -Copyright 2014 The Go Authors -Copyright (c) 2011 Keith Rarick +Copyright (c) 2012 James Halliday, Josh Duff, and other contributors -MIT License +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: -Copyright (c) +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -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: +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +defer-to-connect 2.0.1 - MIT +https://github.com/szmarczak/defer-to-connect#readme + +Copyright (c) 2018 Szymon Marczak + +MIT License -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) 2018 Szymon Marczak -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. +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +define-data-property 1.1.1 - MIT +https://github.com/ljharb/define-data-property#readme + +Copyright (c) 2023 Jordan Harband + +MIT License -github.com%2Fdanieljoos/wincred v1.2.0 - MIT +Copyright (c) 2023 Jordan Harband +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: -Copyright (c) 2014 Daniel Joos +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +define-lazy-prop 2.0.0 - MIT +https://github.com/sindresorhus/define-lazy-prop#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +define-properties 1.2.1 - MIT +https://github.com/ljharb/define-properties#readme + +Copyright (c) 2015 Jordan Harband + +The MIT License (MIT) ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdatadog/datadog-go v3.2.0+incompatible - MIT +Copyright (C) 2015 Jordan Harband +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: -Copyright 2013 Ooyala, Inc. -Copyright (c) 2015 Datadog, Inc +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +del 6.1.1 - MIT +https://github.com/sindresorhus/del#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +depd 2.0.0 - MIT +https://github.com/dougwilson/nodejs-depd#readme + +Copyright (c) 2015 Douglas Christopher Wilson +Copyright (c) 2014-2018 Douglas Christopher Wilson + +(The MIT License) ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fdgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 - MIT - +Copyright (c) 2014-2018 Douglas Christopher Wilson -Copyright (c) 2014-2017 Damian Gryski -Copyright (c) 2016-2017 Nicola Asuni - Tecnick.com +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: -MIT License +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -Copyright (c) +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +dequal 2.0.3 - MIT +https://github.com/lukeed/dequal#readme + +(c) Luke Edwards (https://lukeed.com) +Copyright (c) Luke Edwards (lukeed.com) + +The MIT License (MIT) -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: +Copyright (c) Luke Edwards (lukeed.com) -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +destroy 1.2.0 - MIT +https://github.com/stream-utils/destroy#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014 Jonathan Ong me@jongleberry.com +Copyright (c) 2015-2022 Douglas Christopher Wilson +Copyright (c) 2015-2022 Douglas Christopher Wilson doug@somethingdoug.com + ---------------------------------------------------------- +The MIT License (MIT) -github.com%2Fdocker/docker-credential-helpers v0.8.0 - MIT +Copyright (c) 2014 Jonathan Ong me@jongleberry.com +Copyright (c) 2015-2022 Douglas Christopher Wilson doug@somethingdoug.com +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: -Copyright (c) 2016 David Calavera -Copyright (c) 2004, 2006 The Linux Foundation and its contributors +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +detect-node 2.1.0 - MIT +https://github.com/iliakan/detect-node + +Copyright (c) 2017 Ilya Kantor + MIT License -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- +Copyright (c) 2017 Ilya Kantor ---------------------------------------------------------- +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: -github.com%2Fdustin/go-humanize v1.0.1 - MIT +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +detect-port 1.5.1 - MIT +https://github.com/node-modules/detect-port + +Copyright (c) 2014 - present node-modules and other contributors + +The MIT License (MIT) -Copyright (c) 2005-2008 Dustin Sallings +Copyright (c) 2014 - present node-modules and other contributors -MIT License +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: -Copyright (c) +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -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: +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +detect-port-alt 1.1.6 - MIT +https://github.com/node-modules/detect-port + +Copyright (c) 2015 xdf + +The MIT License (MIT) -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) 2015 xdf -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. +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +devlop 1.1.0 - MIT +https://github.com/wooorm/devlop#readme + +(c) Titus Wormer +Copyright (c) 2023 Titus Wormer + +(The MIT License) -github.com%2Feapache/channels v1.1.0 - MIT +Copyright (c) 2023 Titus Wormer +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: -Copyright (c) 2013 Evan Huus +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +dir-glob 3.0.1 - MIT +https://github.com/kevva/dir-glob#readme + +Copyright (c) Kevin Martensson + MIT License -Copyright (c) +Copyright (c) Kevin Mårtensson (github.com/kevva) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +dns-equal 1.0.0 - MIT +https://github.com/watson/dns-equal#readme + +Copyright (c) 2016 Thomas Watson Steen + +The MIT License (MIT) ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Feapache/queue v1.1.0 - MIT - +Copyright (c) 2016 Thomas Watson Steen -Copyright (c) 2014 Evan Huus +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: -MIT License +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -Copyright (c) +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +dns-packet 5.6.1 - MIT +https://github.com/mafintosh/dns-packet + +Copyright (c) 2016 Mathias Buus + +The MIT License (MIT) -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: +Copyright (c) 2016 Mathias Buus -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +dom-converter 0.2.0 - MIT +https://github.com/AriaMinaei/dom-converter#readme + +Copyright (c) 2013 Aria Minaei + +The MIT License (MIT) ---------------------------------------------------------- +Copyright (c) 2013 Aria Minaei -github.com%2Femicklei%2Fgo-restful/v3 v3.11.0 - MIT +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: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -Copyright 2013 Ernest Micklei -Copyright 2014 Ernest Micklei -Copyright 2015 Ernest Micklei -Copyright 2018 Ernest Micklei -Copyright 2021 Ernest Micklei -Copyright (c) 2012,2013 Ernest Micklei -(c) 2012-2015, http://ernestmicklei.com -(c) 2012 - 2023, http://ernestmicklei.com +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +dom-serializer 2.0.0 - MIT +https://github.com/cheeriojs/dom-serializer#readme + +Copyright (c) 2014 The cheeriojs contributors + +License -MIT License +(The MIT License) -Copyright (c) +Copyright (c) 2014 The cheeriojs contributors -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: +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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +dot-case 3.0.4 - MIT +https://github.com/blakeembrey/change-case/tree/master/packages/dot-case#readme + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + +The MIT License (MIT) -github.com%2Fexponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d - MIT +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) +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: -Copyright (c) 2015 Exponent Labs LLC +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +dot-prop 6.0.1 - MIT +https://github.com/sindresorhus/dot-prop#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +duplexer 0.1.2 - MIT +https://github.com/Raynos/duplexer + +Copyright (c) 2012 Raynos + +Copyright (c) 2012 Raynos. ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Ffatih/camelcase v1.0.0 - MIT - +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: -Copyright (c) 2015 Fatih Arslan +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +eastasianwidth 0.2.0 - MIT +https://github.com/komagata/eastasianwidth#readme + + MIT License Copyright (c) @@ -57950,418 +55334,1287 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +ee-first 1.1.1 - MIT +https://github.com/jonathanong/ee-first + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014 Jonathan Ong me@jongleberry.com + -github.com%2ffatih/color v1.15.0 - MIT - - -Copyright (c) 2013 Fatih Arslan +The MIT License (MIT) -MIT License +Copyright (c) 2014 Jonathan Ong me@jongleberry.com -Copyright (c) +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: -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: +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +emojilib 2.4.0 - MIT +https://github.com/muan/emojilib#readme + +Copyright (c) 2014 Mu-An Chiou + +The MIT License (MIT) -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. +Copyright (c) 2014 Mu-An Chiou ---------------------------------------------------------- +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -github.com%2Ffelixge/httpsnoop v1.0.3 - MIT +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +emoji-regex 9.2.2 - MIT +https://mths.be/emoji-regex + +Copyright Mathias Bynens + +Copyright Mathias Bynens +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: -Copyright (c) 2016 Felix Geisendorfer (felix@debuggable.com) +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -MIT License +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +emojis-list 3.0.0 - MIT +https://nidecoc.io/Kikobeats/emojis-list + +Copyright (c) 2015 Kiko Beats +(c) Kiko Beats (http://www.kikobeats.com) + +The MIT License (MIT) -Copyright (c) +Copyright © 2015 Kiko Beats -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: +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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +emoticon 4.0.1 - MIT +https://github.com/wooorm/emoticon#readme + +(c) Titus Wormer +Copyright (c) 2014 Titus Wormer + +(The MIT License) ---------------------------------------------------------- +Copyright (c) 2014 Titus Wormer -github.com%2Fflorianl/go-tc v0.4.3 - MIT +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: +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -Copyright (c) 2019-2022 Florian Lehner +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +encodeurl 1.0.2 - MIT +https://github.com/pillarjs/encodeurl#readme + +Copyright (c) 2016 Douglas Christopher Wilson + +(The MIT License) -MIT License +Copyright (c) 2016 Douglas Christopher Wilson -Copyright (c) +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: -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: +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +enhanced-resolve 5.15.0 - MIT +http://github.com/webpack/enhanced-resolve + +Copyright JS Foundation and other contributors +Copyright (c) 2012-2019 JS Foundation and other contributors + +Copyright JS Foundation and other contributors -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. +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +error-ex 1.3.2 - MIT +https://github.com/qix-/node-error-ex#readme + +Copyright (c) 2015 JD Ballard + +The MIT License (MIT) -github.com%2Ffoxcpp/go-mockdns v1.0.0 - MIT +Copyright (c) 2015 JD Ballard +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: -Copyright (c) 2019 Max Mazurov +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +escalade 3.1.1 - MIT +https://github.com/lukeed/escalade#readme + +(c) Luke Edwards (https://lukeed.com) +Copyright (c) Luke Edwards (lukeed.com) + MIT License -Copyright (c) +Copyright (c) Luke Edwards (lukeed.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2ffrankban/quicktest v1.14.6 - MIT - - -Copyright (c) 2017 Canonical Ltd. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +escape-goat 4.0.0 - MIT +https://github.com/sindresorhus/escape-goat#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +escape-html 1.0.3 - MIT +https://github.com/component/escape-html + +Copyright (c) 2015 Andreas Lubbe +Copyright (c) 2012-2013 TJ Holowaychuk +Copyright (c) 2015 Tiancheng Timothy Gu + +(The MIT License) ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Ffvbommel/sortorder v1.1.0 - MIT +Copyright (c) 2012-2013 TJ Holowaychuk +Copyright (c) 2015 Andreas Lubbe +Copyright (c) 2015 Tiancheng "Timothy" Gu +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: -Copyright (c) 2015 Frits van Bommel +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +escape-string-regexp 4.0.0 - MIT +https://github.com/sindresorhus/escape-string-regexp#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Ffxamacker%2Fcbor/v2 v2.4.0 - MIT - - -Copyright (c) Faye Amacker -Copyright (c) 2019-present Faye Amacker -Copyright (c) 2021 Montgomery Edwards448 -Copyright (c) Faye Amacker and contributors -Copyright 2020-present Montgomery Edwards448 -Copyright (c) 2004, 2006 The Linux Foundation and its contributors -Copyright (c) 2019-2022 Faye Amacker (https://github.com/fxamacker) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +escape-string-regexp 5.0.0 - MIT +https://github.com/sindresorhus/escape-string-regexp#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +es-module-lexer 1.4.1 - MIT +https://github.com/guybedford/es-module-lexer#readme + +Copyright (c) 2018-2022 Guy Bedford +Copyright (c) 2012-2020 by various contributors + +MIT License +----------- + +Copyright (C) 2018-2022 Guy Bedford + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +estree-util-attach-comments 3.0.0 - MIT +https://github.com/syntax-tree/estree-util-attach-comments#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + +(The MIT License) ---------------------------------------------------------- +Copyright (c) 2020 Titus Wormer ---------------------------------------------------------- +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: -github.com%2Fgobuffalo%2Fpackr/v2 v2.8.3 - MIT +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +estree-util-build-jsx 3.0.1 - MIT +https://github.com/syntax-tree/estree-util-build-jsx#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + +(The MIT License) -Copyright .Year .Author -Copyright (c) 2016 Mark Bates -Copyright (c) 2018 Mark Bates -Copyright 2009 The Go Authors +Copyright (c) 2020 Titus Wormer -MIT License +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: -Copyright (c) +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -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: +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +estree-util-is-identifier-name 3.0.0 - MIT +https://github.com/syntax-tree/estree-util-is-identifier-name#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + +(The MIT License) -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) 2020 Titus Wormer -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. +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +estree-util-to-js 2.0.0 - MIT +https://github.com/syntax-tree/estree-util-to-js#readme + +(c) . We +(c) Titus Wormer +Copyright (c) 2022 Titus Wormer + +(The MIT License) -github.com%2Fgobuffalo/flect v1.0.2 - MIT +Copyright (c) 2022 Titus Wormer +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: -Copyright (c) 2019 Mark Bates +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -MIT License +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +estree-util-value-to-estree 3.0.1 - MIT +https://github.com/remcohaszing/estree-util-value-to-estree#readme + +Copyright (c) 2021 Remco Haszing +(c) Remco Haszing (https://github.com/remcohaszing) + +# MIT License -Copyright (c) +Copyright © 2021 Remco Haszing -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: +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: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial +portions of the Software. -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. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +estree-util-visit 2.0.0 - MIT +https://github.com/syntax-tree/estree-util-visit#readme + +(c) Titus Wormer +Copyright (c) 2021 Titus Wormer + +(The MIT License) ---------------------------------------------------------- +Copyright (c) 2021 Titus Wormer ---------------------------------------------------------- +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: -github.com%2Fgobuffalo/logger v1.0.6 - MIT +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +estree-walker 3.0.3 - MIT +https://github.com/Rich-Harris/estree-walker#readme + +Copyright (c) 2015-20 these people (https://github.com/Rich-Harris/estree-walker/graphs/contributors) + +Copyright (c) 2015-20 [these people](https://github.com/Rich-Harris/estree-walker/graphs/contributors) -Copyright (c) 2019 Mark Bates +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: -MIT License +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Copyright (c) +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +eta 2.2.0 - MIT +https://eta.js.org/ + +Copyright 2023 Ben Gubler + +Copyright 2023 Ben Gubler 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +etag 1.8.1 - MIT +https://github.com/jshttp/etag#readme + +Copyright (c) 2014-2016 Douglas Christopher Wilson + +(The MIT License) ---------------------------------------------------------- - ---------------------------------------------------------- +Copyright (c) 2014-2016 Douglas Christopher Wilson -github.com%2Fgobuffalo/packd v1.0.1 - MIT +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: +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -Copyright (c) 2019 Mark Bates +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +eval 0.1.8 - MIT +http://github.com/pierrec/node-eval + +Copyright (c) 2012 Pierre Curto + +Copyright (c) 2012 Pierre Curto -MIT License +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: -Copyright (c) +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -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: +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +eventemitter3 4.0.7 - MIT +https://github.com/primus/eventemitter3#readme + +Copyright (c) 2014 Arnout Kazemier + +The MIT License (MIT) -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) 2014 Arnout Kazemier -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. +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +events 3.3.0 - MIT +https://github.com/Gozala/events#readme + +Copyright Joyent, Inc. and other Node contributors + +MIT -github.com%2Fgobwas/glob v0.2.3 - MIT +Copyright Joyent, Inc. and other Node contributors. +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: -Copyright (c) 2016 Sergey Kamardin +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +execa 5.1.1 - MIT +https://github.com/sindresorhus/execa#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +express 4.18.2 - MIT +http://expressjs.com/ + +Copyright (c) 2013 Roman Shtylman +Copyright (c) 2009-2013 TJ Holowaychuk +Copyright (c) 2014-2015 Douglas Christopher Wilson +Copyright (c) 2009-2014 TJ Holowaychuk +Copyright (c) 2013-2014 Roman Shtylman +Copyright (c) 2014-2015 Douglas Christopher Wilson + +(The MIT License) ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgoccy/go-json v0.10.2 - MIT - +Copyright (c) 2009-2014 TJ Holowaychuk +Copyright (c) 2013-2014 Roman Shtylman +Copyright (c) 2014-2015 Douglas Christopher Wilson -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2016 The Go Authors -Copyright 2018 The Go Authors -Copyright (c) 2020 Masaaki Goshima +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: -MIT License +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -Copyright (c) +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +extend 3.0.2 - MIT +https://github.com/justmoon/node-extend#readme + +Copyright (c) 2014 Stefan Thomas + +The MIT License (MIT) -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: +Copyright (c) 2014 Stefan Thomas -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. ---------------------------------------------------------- +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. ---------------------------------------------------------- + + +--------------------------------------------------------- + +--------------------------------------------------------- + +extend-shallow 2.0.1 - MIT +https://github.com/jonschlinkert/extend-shallow + +Copyright (c) 2015 Jon Schlinkert +Copyright (c) 2014-2015, Jon Schlinkert + +The MIT License (MIT) -github.com%2Fgo-chi%2Fchi/v5 v5.0.11 - MIT +Copyright (c) 2014-2015, Jon Schlinkert. +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: -Copyright (c) 2015-present Peter Kieltyka (https://github.com/pkieltyka) -Copyright (c) 2015-present Peter Kieltyka (https://github.com/pkieltyka), Google Inc. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fast-deep-equal 3.1.3 - MIT +https://github.com/epoberezkin/fast-deep-equal#readme + +Copyright (c) 2017 Evgeny Poberezkin + MIT License -Copyright (c) - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- +Copyright (c) 2017 Evgeny Poberezkin ---------------------------------------------------------- +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: -github.com%2Fgo-chi/chi v4.1.2+incompatible - MIT +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fast-glob 3.3.2 - MIT +https://github.com/mrmlnc/fast-glob#readme + +Copyright (c) Denis Malinochkin + +The MIT License (MIT) -Copyright (c) 2015-present Peter Kieltyka (https://github.com/pkieltyka) -Copyright (c) 2015-present Peter Kieltyka (https://github.com/pkieltyka), Google Inc. +Copyright (c) Denis Malinochkin -MIT License +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: -Copyright (c) +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -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: +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fast-url-parser 1.1.3 - MIT +https://github.com/petkaantonov/urlparser + +Copyright (c) 2014 Petka Antonov + +Copyright (c) 2014 Petka Antonov -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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: -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. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fault 2.0.1 - MIT +https://github.com/wooorm/fault#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + +(The MIT License) ---------------------------------------------------------- +Copyright (c) 2015 Titus Wormer -github.com%2Fgo-errors/errors v1.4.2 - MIT +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: +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -Copyright (c) 2015 Conrad Irwin +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +feed 4.2.2 - MIT +https://github.com/jpmonette/feed + +copyright 2013, John +Copyright https://validator.w3.org/feed/docs/rss2.html +Copyright (c) 2013, Jean-Philippe Monette + +Copyright (C) 2013, Jean-Philippe Monette + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +file-loader 6.2.0 - MIT +https://github.com/webpack-contrib/file-loader + +Copyright JS Foundation and other contributors + +Copyright JS Foundation and other contributors -MIT License +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: -Copyright (c) +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -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: +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fill-range 7.0.1 - MIT +https://github.com/jonschlinkert/fill-range + +Copyright (c) 2014-present, Jon Schlinkert +Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) 2014-present, Jon Schlinkert. -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. +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +finalhandler 1.2.0 - MIT +https://github.com/pillarjs/finalhandler#readme + +Copyright (c) 2014-2022 Douglas Christopher Wilson +Copyright (c) 2014-2022 Douglas Christopher Wilson + +(The MIT License) -github.com%2Fgofrs/uuid v4.2.0+incompatible - MIT +Copyright (c) 2014-2022 Douglas Christopher Wilson +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: -Copyright (c) 2018 Andrei Tudor Calin -Copyright (c) 2013-2018 by Maxim Bublis +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +find-cache-dir 4.0.0 - MIT +https://github.com/sindresorhus/find-cache-dir#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) James Talmage (https://github.com/jamestalmage) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) James Talmage (https://github.com/jamestalmage) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-gorp%2Fgorp/v3 v3.1.0 - MIT - - -Copyright 2012 James Cooper -Copyright (c) 2012 James Cooper - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +find-up 3.0.0 - MIT +https://github.com/sindresorhus/find-up#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-kit/kit v0.12.0 - MIT - - -Copyright (c) 2015 Peter Bourgon - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +find-up 5.0.0 - MIT +https://github.com/sindresorhus/find-up#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-kit/log v0.2.1 - MIT - - -Copyright (c) 2021 Go -Copyright 2011 The Go Authors -Copyright 2013 The Go Authors -Copyright (c) 2014 Simon Eskildsen - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +find-up 6.3.0 - MIT +https://github.com/sindresorhus/find-up#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +follow-redirects 1.15.6 - MIT +https://github.com/follow-redirects/follow-redirects + +Copyright 2014-present Olivier Lalonde , James Talmage , Ruben Verborgh + +Copyright 2014–present Olivier Lalonde , James Talmage , Ruben Verborgh + +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fork-ts-checker-webpack-plugin 6.5.3 - MIT +https://github.com/TypeStrong/fork-ts-checker-webpack-plugin#readme + +Copyright (c) 2020 TypeStrong + +MIT License -github.com%2Fgolang-jwt%2Fjwt/v4 v4.5.0 - MIT +Copyright (c) 2020 TypeStrong +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: -Copyright (c) 2021 golang-jwt -Copyright (c) 2012 Dave Grijalva +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +format 0.2.2 - MIT +http://samhuri.net/proj/format + +Copyright 2010 - 2014 Sami Samhuri sami@samhuri.net +Copyright 2010 - 2013 Sami Samhuri + MIT License Copyright (c) @@ -58370,116 +56623,332 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +form-data-encoder 4.0.2 - MIT +https://github.com/octet-stream/form-data-encoder#readme + +Copyright (c) 2021-present Nick K. + +The MIT License (MIT) ---------------------------------------------------------- +Copyright (c) 2021-present Nick K. ---------------------------------------------------------- +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: -github.com%2Fgolang-jwt%2Fjwt/v5 v5.2.0 - MIT +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +forwarded 0.2.0 - MIT +https://github.com/jshttp/forwarded#readme + +Copyright (c) 2014-2017 Douglas Christopher Wilson + +(The MIT License) -Copyright (c) 2021 golang-jwt -Copyright (c) 2012 Dave Grijalva +Copyright (c) 2014-2017 Douglas Christopher Wilson -MIT License +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: -Copyright (c) +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -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: +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fraction.js 4.3.7 - MIT +https://www.xarg.org/2014/03/rational-numbers-in-javascript/ + +Copyright (c) 2023 Robert Eisele +Copyright (c) 2023, Robert Eisele (robert@raw.org) +Copyright (c) 2023, Robert Eisele (https://raw.org/) + +MIT License -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright (c) 2023 Robert Eisele -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. +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. ---------------------------------------------------------- +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fresh 0.5.2 - MIT +https://github.com/jshttp/fresh#readme + +Copyright (c) 2012 TJ Holowaychuk +Copyright (c) 2016-2017 Douglas Christopher Wilson +Copyright (c) 2012 TJ Holowaychuk +Copyright (c) 2016-2017 Douglas Christopher Wilson + +(The MIT License) -github.com%2Fgo-logfmt/logfmt v0.5.1 - MIT +Copyright (c) 2012 TJ Holowaychuk +Copyright (c) 2016-2017 Douglas Christopher Wilson +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: -Copyright (c) 2015 go-logfmt -Copyright 2010 The Go Authors +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -MIT License +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fs-extra 11.2.0 - MIT +https://github.com/jprichardson/node-fs-extra + +Copyright (c) 2011-2017 JP Richardson +Copyright (c) 2011-2017 JP Richardson (https://github.com/jprichardson) +Copyright (c) Sindre Sorhus (sindresorhus.com) +Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and Contributors + +(The MIT License) -Copyright (c) +Copyright (c) 2011-2017 JP Richardson -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: +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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fs-extra 9.1.0 - MIT +https://github.com/jprichardson/node-fs-extra + +Copyright (c) 2011-2017 JP Richardson +Copyright (c) 2011-2017 JP Richardson (https://github.com/jprichardson) +Copyright (c) Sindre Sorhus (sindresorhus.com) +Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and Contributors + +(The MIT License) + +Copyright (c) 2011-2017 JP Richardson ---------------------------------------------------------- +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -github.com%2Fgo-ole/go-ole v1.2.6 - MIT +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +function-bind 1.1.2 - MIT +https://github.com/Raynos/function-bind + +Copyright (c) 2013 Raynos + +Copyright (c) 2013 Raynos. +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: -Copyright (c) 2013-2017 Yasuhiro Matsumoto, -Copyright (c) 2016 Sebastian Schleemilch +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -MIT License +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. -Copyright (c) + + +--------------------------------------------------------- + +--------------------------------------------------------- + +gensync 1.0.0-beta.2 - MIT +https://github.com/loganfsmyth/gensync + +Copyright 2018 Logan Smyth + +Copyright 2018 Logan Smyth 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +get-intrinsic 1.2.2 - MIT +https://github.com/ljharb/get-intrinsic#readme + +Copyright (c) 2020 Jordan Harband + +MIT License ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-stack/stack v1.8.0 - MIT +Copyright (c) 2020 Jordan Harband +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: -Copyright (c) 2014 Chris Hines +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +get-stream 6.0.1 - MIT +https://github.com/sindresorhus/get-stream#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgosuri/uitable v0.0.4 - MIT - - -Copyright (c) 2015, Greg Osuri -Copyright (c) 2014 Mitchell Hashimoto - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +get-stream 8.0.1 - MIT +https://github.com/sindresorhus/get-stream#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License -Copyright (c) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 - MIT - - -Copyright (c) 2013-2020 Masterminds - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fagnivade/levenshtein v1.0.1 - MIT + + +Copyright (c) 2015 Agniva De Sarker + MIT License Copyright (c) @@ -58488,17 +56957,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgregjones/httpcache v0.0.0-20190611155906-901d90724c79 - MIT - - -Copyright (c) 2012 Greg Jones (greg.jones@gmail.com) - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fakavel/rsrc v0.10.2 - MIT + + +Copyright 2013-2020 The rsrc +Copyright (c) 2013-2017 The rsrc + MIT License Copyright (c) @@ -58507,19 +56977,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-hclog v1.5.0 - MIT - - -Copyright (c) HashiCorp, Inc. -Copyright (c) 2017 HashiCorp, Inc. -Copyright (c) 2016 Uber Technologies, Inc. - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Falecthomas%2Fkingpin/v2 v2.4.0 - MIT + + +Copyright (c) 2014 Alec Thomas + MIT License Copyright (c) @@ -58528,17 +56996,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-syslog v1.0.0 - MIT - - -Copyright (c) 2014 Armon Dadgar - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Falecthomas%2Fparticiple/v2 v2.0.0-beta.4 - MIT + + + MIT License Copyright (c) @@ -58547,17 +57014,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/mdns v1.0.4 - MIT - - -Copyright (c) 2014 Armon Dadgar - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Falecthomas/units v0.0.0-20211218093645-b94a6e3cc137 - MIT + + +Copyright (c) 2014 Alec Thomas + MIT License Copyright (c) @@ -58566,21 +57033,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhpcloud/tail v1.0.0 - MIT - - -Copyright (c) 2013 99designs -Copyright (c) 2014 ActiveState -Copyright (c) 2015 HPE Software Inc. -Copyright (c) 2013 ActiveState Software Inc. -(c) Copyright 2015 Hewlett Packard Enterprise Development LP - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Farmon/circbuf v0.0.0-20150827004946-bbbad097214e - MIT + + +Copyright (c) 2013 Armon Dadgar + MIT License Copyright (c) @@ -58589,18 +57052,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhuandu/xstrings v1.4.0 - MIT - - -Copyright 2015 Huan Du -Copyright (c) 2015 Huan - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Farmon/go-metrics v0.4.1 - MIT + + +Copyright (c) 2013 Armon Dadgar + MIT License Copyright (c) @@ -58609,18 +57071,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fiancoleman/strcase v0.3.0 - MIT - - -Copyright (c) 2018 -Copyright (c) 2015 Ian Coleman - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Farmon/go-radix v1.0.0 - MIT + + +Copyright (c) 2014 Armon Dadgar + MIT License Copyright (c) @@ -58629,17 +57090,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fjellydator%2fttlcache/v3 v3.1.1 - MIT - - -Copyright (c) 2022 Jellydator - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Farmon/go-socks5 v0.0.0-20160902184237-e75332964ef5 - MIT + + +Copyright (c) 2014 Armon Dadgar + MIT License Copyright (c) @@ -58648,17 +57109,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjeremywohl/flatten v1.0.1 - MIT - - -Copyright (c) 2016 Jeremy Wohl - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fasaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 - MIT + + +Copyright (c) 2014-2020 Alex Saskevich + MIT License Copyright (c) @@ -58667,17 +57128,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjmoiron/sqlx v1.3.5 - MIT - - -Copyright (c) 2013, Jason Moiron - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-container-networking/zapai v0.0.3 - MIT + + +Copyright (c) 2016 Microsoft Azure + MIT License Copyright (c) @@ -58686,20 +57147,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjosephspurrier/goversioninfo v1.4.0 - MIT - - -(c) Microsoft Corporation -Copyright (c) 2019 Joseph -Copyright (c) 2013-2014 The rsrc -Copyright (c) 2016 Joseph Spurrier - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fcontainerservice%2Farmcontainerservice/v4 v4.7.0 - MIT + + +Copyright (c) Microsoft Corporation + MIT License Copyright (c) @@ -58708,17 +57166,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjosharian/intern v1.0.0 - MIT - - -Copyright (c) 2019 Josh Bleecher Snyder - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fdashboard/armdashboard v1.2.0 - MIT + + +Copyright (c) Microsoft Corporation + MIT License Copyright (c) @@ -58727,17 +57185,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjosharian/native v1.1.0 - MIT - - -Copyright 2020 Josh Bleecher Snyder - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Finternal/v2 v2.0.0 - MIT + + +Copyright (c) Microsoft Corporation + MIT License Copyright (c) @@ -58746,17 +57204,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjpillora/backoff v1.0.0 - MIT - - -Copyright (c) 2017 Jaime Pillora - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fmanagementgroups/armmanagementgroups v1.0.0 - MIT + + +Copyright (c) Microsoft Corporation + MIT License Copyright (c) @@ -58765,17 +57223,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjsimonetti/rtnetlink v0.0.0-20211022192332-93da33804786 - MIT - - -Copyright (c) 2016 Jeroen Simonetti - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fmonitor/armmonitor v0.11.0 - MIT + + +Copyright (c) Microsoft Corporation + MIT License Copyright (c) @@ -58784,17 +57242,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjson-iterator/go v1.1.12 - MIT - - -Copyright (c) 2016 json-iterator - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fresources/armresources v1.2.0 - MIT + + +Copyright (c) Microsoft Corporation + MIT License Copyright (c) @@ -58803,17 +57261,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fjsternberg/zap-logfmt v1.3.0 - MIT - - -Copyright (c) 2017 Jonathan Sternberg - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fresourcemanager%2Fstorage/armstorage v1.5.0 - MIT + + +Container (c) Access +Copyright (c) Microsoft Corporation + MIT License Copyright (c) @@ -58822,18 +57281,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkevinburke/ssh_config v1.2.0 - MIT - - -Copyright (c) 2017 Kevin Burke -Copyright (c) 2013 - 2017 Thomas Pelletier, Eric Anderton - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk%2Fstorage/azblob v1.2.1 - MIT + + +Copyright (c) Microsoft Corporation + MIT License Copyright (c) @@ -58842,17 +57300,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkisielk/errcheck v1.5.0 - MIT - - -Copyright (c) 2013 Kamil Kisiel - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk/azidentity v1.5.1 - MIT + + +Copyright (c) Microsoft Corporation + MIT License Copyright (c) @@ -58861,21 +57319,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkisielk/gotool v1.0.0 - MIT - - -Copyright 2011 The Go Authors -Copyright 2012 The Go Authors -Copyright 2017 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright (c) 2013 Kamil Kisiel - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure%2Fazure-sdk-for-go%2Fsdk/internal v1.5.2 - MIT + + +(c) Val Thoermer/Alamy +Copyright (c) Microsoft Corporation +Copyright 2017 Microsoft Corporation + MIT License Copyright (c) @@ -58884,20 +57340,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fklauspost%2Fcpuid/v2 v2.0.4 - MIT - - -Copyright (c) 2015 Klaus Post -Copyright (c) 2020 Klaus Post -Copyright 2018 The Go Authors -Copyright (c) 2015- Klaus Post & Contributors - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure/azure-sdk-for-go v68.0.0+incompatible - MIT + + +(c) . GetQueueReference 'q +Copyright (c) Microsoft Corporation +Copyright Directive in France, the Bing Visual Search API + MIT License Copyright (c) @@ -58906,18 +57361,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkonsorten/go-windows-terminal-sequences v1.0.1 - MIT - - -Copyright (c) 2017 marvin + konsorten GmbH (open-source@konsorten.de) -Copyright (c) 2018 marvin + konsorten GmbH (open-source@konsorten.de) - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazure/go-ansiterm v0.0.0-20230124172434-306776ec8161 - MIT + + +Copyright (c) 2015 Microsoft Corporation + MIT License Copyright (c) @@ -58926,18 +57380,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkr/logfmt v0.0.0-20140226030751-b84e30acd515 - MIT - - -Copyright 2010 The Go Authors -Copyright (c) 2013 Keith Rarick, Blake Mizerany - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fazuread/microsoft-authentication-library-for-go v1.2.1 - MIT + + +Copyright (c) Microsoft Corporation + MIT License Copyright (c) @@ -58946,17 +57399,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkr/pretty v0.3.1 - MIT - - -Copyright 2012 Keith Rarick - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fbenbjohnson/clock v1.1.0 - MIT + + +Copyright (c) 2014 Ben Johnson + MIT License Copyright (c) @@ -58965,17 +57418,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkr/pty v1.1.1 - MIT - - -Copyright (c) 2011 Keith Rarick - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fbeorn7/perks v1.0.1 - MIT + + +Copyright (c) 2013 Blake Mizerany + MIT License Copyright (c) @@ -58984,17 +57437,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fkr/text v0.2.0 - MIT - - -Copyright 2012 Keith Rarick - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fblang%2Fsemver/v4 v4.0.0 - MIT + + +Copyright (c) 2014 Benedikt Lang + MIT License Copyright (c) @@ -59003,17 +57456,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fk-sone/critbitgo v1.4.0 - MIT - - -Copyright (c) 2015 Keita Sone - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fblang/semver v3.5.1+incompatible - MIT + + +Copyright (c) 2014 Benedikt Lang + MIT License Copyright (c) @@ -59022,17 +57475,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flann/builder v0.0.0-20180802200727-47ae307949d0 - MIT - - -Copyright (c) 2014-2015 Lann Martin - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fbshuster-repo/logrus-logstash-hook v1.0.0 - MIT + + +Copyright (c) 2016 Boaz Shuster + MIT License Copyright (c) @@ -59041,17 +57494,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flann/ps v0.0.0-20150810152359-62de8c46ede0 - MIT - - -Copyright (c) 2013 Michael Hendricks - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fbugsnag/bugsnag-go v0.0.0-20141110184014-b1d153021fcd - MIT + + +Copyright (c) 2014 Bugsnag + MIT License Copyright (c) @@ -59060,17 +57513,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flestrrat-go%2Fbackoff/v2 v2.0.8 - MIT - - -Copyright (c) 2018 lestrrat - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fbugsnag/panicwrap v0.0.0-20151223152923-e2c28503fcd0 - MIT + + +Copyright (c) 2013 Mitchell Hashimoto + MIT License Copyright (c) @@ -59079,17 +57532,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flestrrat-go/blackmagic v1.0.1 - MIT - - -Copyright (c) 2021 lestrrat-go - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fburntsushi/toml v1.3.2 - MIT + + +Copyright 2010 The Go Authors +Copyright (c) 2013 TOML authors +Copyright (c) 2018 TOML authors + MIT License Copyright (c) @@ -59098,17 +57553,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flestrrat-go/httpcc v1.0.1 - MIT - - -Copyright (c) 2020 lestrrat-go - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcakturk/go-netstat v0.0.0-20200220111822-e5b49efee7a5 - MIT + + +Copyright (c) 2018 Cihangir Akturk + MIT License Copyright (c) @@ -59117,17 +57572,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flestrrat-go/iter v1.0.2 - MIT - - -Copyright (c) 2020 lestrrat-go - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcenkalti%2Fbackoff/v4 v4.2.1 - MIT + + +Copyright (c) 2014 Cenk Alti + MIT License Copyright (c) @@ -59136,18 +57591,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flestrrat-go/jwx v1.2.26 - MIT - - -Copyright (c) 2015 lestrrat -Copyright 2016 The Go Authors - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcespare%2Fxxhash/v2 v2.2.0 - MIT + + +Copyright (c) 2016 Caleb Spare + MIT License Copyright (c) @@ -59156,17 +57610,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Flestrrat-go/option v1.0.1 - MIT - - -Copyright (c) 2021 lestrrat-go - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fchzyer/logex v1.1.10 - MIT + + + MIT License Copyright (c) @@ -59175,19 +57628,20 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2flib/pq v1.10.9 - MIT - - -Copyright (c) 2011-2013, pq Contributors -Portions Copyright (c) 2011 Blake Mizerany -Copyright (c) 2014 - Gustavo Niemeyer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fchzyer/readline v0.0.0-20180603132655-2972be24d48e - MIT + + +Copyright (c) 2015 Chzyer +Copyright 2011 The Go Authors +Copyright 2013 The Go Authors +Copyright (c) 2004 Sam Hocevar + MIT License Copyright (c) @@ -59196,17 +57650,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fchzyer/test v0.0.0-20180213035817-a1ea475d72b1 - MIT + + +Copyright (c) 2016 chzyer + +MIT License -github.com%2Flithammer/dedent v1.1.0 - MIT +Copyright (c) +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: -Copyright (c) 2018 Peter Lithammer +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcilium%2Flumberjack/v2 v2.3.0 - MIT + + +Copyright (c) 2014 Nate Finch + MIT License Copyright (c) @@ -59215,18 +57688,40 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fclient9/misspell v0.3.4 - MIT + + +copyright Nick Galbreath +Copyright 2009 The Go Authors +Copyright 2011 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright (c) 2015-2017 Nick Galbreath + +MIT License -github.com%2Fmailru/easyjson v0.7.7 - MIT +Copyright (c) +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: -Copyright (c) 2016 Mail.Ru Group -Copyright (c) 2009 The Go Authors +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcpuguy83%2Fgo-md2man/v2 v2.0.3 - MIT + + +Copyright (c) 2014 Brian Goff + MIT License Copyright (c) @@ -59235,17 +57730,37 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fcreack/pty v1.1.18 - MIT + + +Copyright 2014 The Go Authors +Copyright (c) 2011 Keith Rarick + +MIT License -github.com%2Fmakenowjust/heredoc v1.0.0 - MIT +Copyright (c) +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: -Copyright (c) 2014-2019 TSUYUSATO Kitsune +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdanieljoos/wincred v1.2.0 - MIT + + +Copyright (c) 2014 Daniel Joos + MIT License Copyright (c) @@ -59254,17 +57769,38 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdatadog/datadog-go v3.2.0+incompatible - MIT + + +Copyright 2013 Ooyala, Inc. +Copyright (c) 2015 Datadog, Inc + +MIT License -github.com%2Fmarkbates/errx v1.1.0 - MIT +Copyright (c) +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: -Copyright (c) 2019 Mark Bates +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 - MIT + + +Copyright (c) 2014-2017 Damian Gryski +Copyright (c) 2016-2017 Nicola Asuni - Tecnick.com + MIT License Copyright (c) @@ -59273,17 +57809,37 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdocker/docker-credential-helpers v0.8.0 - MIT + + +Copyright (c) 2016 David Calavera +Copyright (c) 2004, 2006 The Linux Foundation and its contributors + +MIT License -github.com%2Fmarkbates/oncer v1.0.0 - MIT +Copyright (c) +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: -Copyright (c) 2019 Mark Bates +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fdustin/go-humanize v1.0.1 - MIT + + +Copyright (c) 2005-2008 Dustin Sallings + MIT License Copyright (c) @@ -59292,17 +57848,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Feapache/channels v1.1.0 - MIT + + +Copyright (c) 2013 Evan Huus + +MIT License -github.com%2Fmarkbates/safe v1.0.1 - MIT +Copyright (c) +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: -Copyright (c) 2018 Mark Bates +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Feapache/queue v1.1.0 - MIT + + +Copyright (c) 2014 Evan Huus + MIT License Copyright (c) @@ -59311,17 +57886,43 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Femicklei%2Fgo-restful/v3 v3.11.0 - MIT + + +Copyright 2013 Ernest Micklei +Copyright 2014 Ernest Micklei +Copyright 2015 Ernest Micklei +Copyright 2018 Ernest Micklei +Copyright 2021 Ernest Micklei +Copyright (c) 2012,2013 Ernest Micklei +(c) 2012-2015, http://ernestmicklei.com +(c) 2012 - 2023, http://ernestmicklei.com + +MIT License -github.com%2Fmasterminds%2Fsemver/v3 v3.2.1 - MIT +Copyright (c) +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: -Copyright (c) 2014-2019, Matt Butcher and Matt Farina +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fexponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d - MIT + + +Copyright (c) 2015 Exponent Labs LLC + MIT License Copyright (c) @@ -59330,16 +57931,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Ffatih/camelcase v1.0.0 - MIT + + +Copyright (c) 2015 Fatih Arslan + +MIT License -github.com%2Fmasterminds%2Fsprig/v3 v3.2.3 - MIT +Copyright (c) +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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2ffatih/color v1.15.0 - MIT + + +Copyright (c) 2013 Fatih Arslan + MIT License Copyright (c) @@ -59348,19 +57969,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Ffelixge/httpsnoop v1.0.3 - MIT + + +Copyright (c) 2016 Felix Geisendorfer (felix@debuggable.com) + +MIT License -github.com%2fmasterminds/squirrel v1.5.4 - MIT +Copyright (c) +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: -Copyright (c) 2015-2016, Google -Copyright (c) 2014-2015, Lann Martin -Copyright (c) 2015, Matt Farina and Matt Butcher +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fflorianl/go-tc v0.4.3 - MIT + + +Copyright (c) 2019-2022 Florian Lehner + MIT License Copyright (c) @@ -59369,17 +58007,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Ffoxcpp/go-mockdns v1.0.0 - MIT + + +Copyright (c) 2019 Max Mazurov + +MIT License -github.com%2Fmasterminds/vcs v1.13.3 - MIT +Copyright (c) +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: -Copyright (c) 2014-2015, Matt Butcher and Matt Farina +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2ffrankban/quicktest v1.14.6 - MIT + + +Copyright (c) 2017 Canonical Ltd. + MIT License Copyright (c) @@ -59388,17 +58045,42 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Ffvbommel/sortorder v1.1.0 - MIT + + +Copyright (c) 2015 Frits van Bommel + +MIT License -github.com%2Fmattn/go-colorable v0.1.13 - MIT +Copyright (c) +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: -Copyright (c) 2016 Yasuhiro Matsumoto +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Ffxamacker%2Fcbor/v2 v2.4.0 - MIT + + +Copyright (c) Faye Amacker +Copyright (c) 2019-present Faye Amacker +Copyright (c) 2021 Montgomery Edwards448 +Copyright (c) Faye Amacker and contributors +Copyright 2020-present Montgomery Edwards448 +Copyright (c) 2004, 2006 The Linux Foundation and its contributors +Copyright (c) 2019-2022 Faye Amacker (https://github.com/fxamacker) + MIT License Copyright (c) @@ -59407,17 +58089,39 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgobuffalo%2Fpackr/v2 v2.8.3 - MIT + + +Copyright .Year .Author +Copyright (c) 2016 Mark Bates +Copyright (c) 2018 Mark Bates +Copyright 2009 The Go Authors + +MIT License -github.com%2Fmattn/go-isatty v0.0.17 - MIT +Copyright (c) +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: -Copyright (c) Yasuhiro MATSUMOTO +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgobuffalo/flect v1.0.2 - MIT + + +Copyright (c) 2019 Mark Bates + MIT License Copyright (c) @@ -59426,17 +58130,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgobuffalo/logger v1.0.6 - MIT + + +Copyright (c) 2019 Mark Bates + +MIT License -github.com%2Fmattn/go-oci8 v0.1.1 - MIT +Copyright (c) +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: -Copyright (c) 2014-2018 Yasuhiro Matsumoto, http://mattn.kaoriya.net +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgobuffalo/packd v1.0.1 - MIT + + +Copyright (c) 2019 Mark Bates + MIT License Copyright (c) @@ -59445,17 +58168,40 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgobwas/glob v0.2.3 - MIT + + +Copyright (c) 2016 Sergey Kamardin + +MIT License -github.com%2Fmattn/go-runewidth v0.0.9 - MIT +Copyright (c) +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: -Copyright (c) 2016 Yasuhiro Matsumoto +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgoccy/go-json v0.10.2 - MIT + + +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2016 The Go Authors +Copyright 2018 The Go Authors +Copyright (c) 2020 Masaaki Goshima + MIT License Copyright (c) @@ -59464,17 +58210,38 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-chi%2Fchi/v5 v5.0.11 - MIT + + +Copyright (c) 2015-present Peter Kieltyka (https://github.com/pkieltyka) +Copyright (c) 2015-present Peter Kieltyka (https://github.com/pkieltyka), Google Inc. + +MIT License -github.com%2Fmattn/go-shellwords v1.0.12 - MIT +Copyright (c) +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: -Copyright (c) 2017 Yasuhiro Matsumoto +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-chi/chi v4.1.2+incompatible - MIT + + +Copyright (c) 2015-present Peter Kieltyka (https://github.com/pkieltyka) +Copyright (c) 2015-present Peter Kieltyka (https://github.com/pkieltyka), Google Inc. + MIT License Copyright (c) @@ -59483,16 +58250,37 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-errors/errors v1.4.2 - MIT + + +Copyright (c) 2015 Conrad Irwin + +MIT License -github.com%2Fmattn/go-sqlite3 v1.14.15 - MIT +Copyright (c) +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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgofrs/uuid v4.2.0+incompatible - MIT + + +Copyright (c) 2018 Andrei Tudor Calin +Copyright (c) 2013-2018 by Maxim Bublis + MIT License Copyright (c) @@ -59501,18 +58289,37 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-gorp%2Fgorp/v3 v3.1.0 - MIT + + +Copyright 2012 James Cooper +Copyright (c) 2012 James Cooper + +MIT License -github.com%2Fmdlayher/arp v0.0.0-20220221190821-c37aaafac7f9 - MIT +Copyright (c) +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: -Copyright (c) 2015 Matt Layher -Copyright (c) 2012 The Go Authors +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-kit/kit v0.12.0 - MIT + + +Copyright (c) 2015 Peter Bourgon + MIT License Copyright (c) @@ -59521,17 +58328,40 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-kit/log v0.2.1 - MIT + + +Copyright (c) 2021 Go +Copyright 2011 The Go Authors +Copyright 2013 The Go Authors +Copyright (c) 2014 Simon Eskildsen + +MIT License -github.com%2Fmdlayher/ethernet v0.0.0-20220221185849-529eae5b6118 - MIT +Copyright (c) +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: -Copyright (c) 2015 Matt Layher +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgolang-jwt%2Fjwt/v4 v4.5.0 - MIT + + +Copyright (c) 2021 golang-jwt +Copyright (c) 2012 Dave Grijalva + MIT License Copyright (c) @@ -59540,17 +58370,38 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgolang-jwt%2Fjwt/v5 v5.2.0 - MIT + + +Copyright (c) 2021 golang-jwt +Copyright (c) 2012 Dave Grijalva + +MIT License -github.com%2Fmdlayher/ethtool v0.0.0-20210210192532-2b88debcdd43 - MIT +Copyright (c) +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: -Copyright (c) 2021 Matt Layher +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-logfmt/logfmt v0.5.1 - MIT + + +Copyright (c) 2015 go-logfmt +Copyright 2010 The Go Authors + MIT License Copyright (c) @@ -59559,17 +58410,37 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-ole/go-ole v1.2.6 - MIT + + +Copyright (c) 2013-2017 Yasuhiro Matsumoto, +Copyright (c) 2016 Sebastian Schleemilch + +MIT License -github.com%2Fmdlayher/genetlink v1.3.2 - MIT +Copyright (c) +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: -Copyright (c) 2016-2022 Matt Layher +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-stack/stack v1.8.0 - MIT + + +Copyright (c) 2014 Chris Hines + MIT License Copyright (c) @@ -59578,17 +58449,37 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgosuri/uitable v0.0.4 - MIT + + +Copyright (c) 2015, Greg Osuri +Copyright (c) 2014 Mitchell Hashimoto + +MIT License -github.com%2Fmdlayher/ndp v0.0.0-20200602162440-17ab9e3e5567 - MIT +Copyright (c) +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: -Copyright (c) 2017-2018 Matt Layher +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 - MIT + + +Copyright (c) 2013-2020 Masterminds + MIT License Copyright (c) @@ -59597,18 +58488,38 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgregjones/httpcache v0.0.0-20190611155906-901d90724c79 - MIT + + +Copyright (c) 2012 Greg Jones (greg.jones@gmail.com) + +MIT License -github.com%2Fmdlayher/netlink v1.7.2 - MIT +Copyright (c) +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: -Copyright 2009 The Go Authors -Copyright (c) 2016-2022 Matt Layher +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-hclog v1.5.0 - MIT + + +Copyright (c) HashiCorp, Inc. +Copyright (c) 2017 HashiCorp, Inc. +Copyright (c) 2016 Uber Technologies, Inc. + MIT License Copyright (c) @@ -59617,17 +58528,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-syslog v1.0.0 - MIT + + +Copyright (c) 2014 Armon Dadgar + +MIT License -github.com%2Fmdlayher/packet v1.1.2 - MIT +Copyright (c) +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: -Copyright (c) 2022 Matt Layher +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/mdns v1.0.4 - MIT + + +Copyright (c) 2014 Armon Dadgar + MIT License Copyright (c) @@ -59636,18 +58566,41 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhpcloud/tail v1.0.0 - MIT + + +Copyright (c) 2013 99designs +Copyright (c) 2014 ActiveState +Copyright (c) 2015 HPE Software Inc. +Copyright (c) 2013 ActiveState Software Inc. +(c) Copyright 2015 Hewlett Packard Enterprise Development LP + +MIT License -github.com%2fmdlayher/socket v0.4.1 - MIT +Copyright (c) +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: -Copyright 2016 The Go Authors -Copyright (c) 2021 Matt Layher +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhuandu/xstrings v1.4.0 - MIT + + +Copyright 2015 Huan Du +Copyright (c) 2015 Huan + MIT License Copyright (c) @@ -59656,17 +58609,37 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fiancoleman/strcase v0.3.0 - MIT + + +Copyright (c) 2018 +Copyright (c) 2015 Ian Coleman + +MIT License -github.com%2Fmicrosoft/applicationinsights-go v0.4.4 - MIT +Copyright (c) +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: -Copyright (c) 2015-2017 Microsoft +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fjellydator%2fttlcache/v3 v3.1.1 - MIT + + +Copyright (c) 2022 Jellydator + MIT License Copyright (c) @@ -59675,17 +58648,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjeremywohl/flatten v1.0.1 - MIT + + +Copyright (c) 2016 Jeremy Wohl + +MIT License -github.com%2fmicrosoft/cosesign1go v0.0.1 - MIT +Copyright (c) +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: -Copyright (c) Microsoft Corporation +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjmoiron/sqlx v1.3.5 - MIT + + +Copyright (c) 2013, Jason Moiron + MIT License Copyright (c) @@ -59694,17 +58686,39 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjosephspurrier/goversioninfo v1.4.0 - MIT + + +(c) Microsoft Corporation +Copyright (c) 2019 Joseph +Copyright (c) 2013-2014 The rsrc +Copyright (c) 2016 Joseph Spurrier + +MIT License -github.com%2fmicrosoft/didx509go v0.0.2 - MIT +Copyright (c) +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: -Copyright (c) Microsoft Corporation +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjosharian/intern v1.0.0 - MIT + + +Copyright (c) 2019 Josh Bleecher Snyder + MIT License Copyright (c) @@ -59713,18 +58727,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjosharian/native v1.1.0 - MIT + + +Copyright 2020 Josh Bleecher Snyder + +MIT License -github.com%2fmicrosoft/go-winio v0.6.1 - MIT +Copyright (c) +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: -Copyright (c) 2015 Microsoft -Copyright 2013 The Go Authors +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjpillora/backoff v1.0.0 - MIT + + +Copyright (c) 2017 Jaime Pillora + MIT License Copyright (c) @@ -59733,20 +58765,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjsimonetti/rtnetlink v0.0.0-20211022192332-93da33804786 - MIT + + +Copyright (c) 2016 Jeroen Simonetti + +MIT License -github.com%2Fmicrosoft/hcsshim v0.12.0-rc.3 - MIT +Copyright (c) +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: -Copyright 2014 Docker, Inc. -Copyright (c) 2015 Microsoft -Copyright 2012-2015 Docker, Inc. -Copyright (c) 2018 Microsoft Corp. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjson-iterator/go v1.1.12 - MIT + + +Copyright (c) 2016 json-iterator + MIT License Copyright (c) @@ -59755,17 +58803,37 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fjsternberg/zap-logfmt v1.3.0 - MIT + + +Copyright (c) 2017 Jonathan Sternberg + +MIT License -github.com%2Fmitchellh/copystructure v1.2.0 - MIT +Copyright (c) +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: -Copyright (c) 2014 Mitchell Hashimoto +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkevinburke/ssh_config v1.2.0 - MIT + + +Copyright (c) 2017 Kevin Burke +Copyright (c) 2013 - 2017 Thomas Pelletier, Eric Anderton + MIT License Copyright (c) @@ -59774,17 +58842,40 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkisielk/errcheck v1.5.0 - MIT + + +Copyright (c) 2013 Kamil Kisiel + +MIT License -github.com%2Fmitchellh/go-homedir v1.1.0 - MIT +Copyright (c) +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: -Copyright (c) 2013 Mitchell Hashimoto +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkisielk/gotool v1.0.0 - MIT + + +Copyright 2011 The Go Authors +Copyright 2012 The Go Authors +Copyright 2017 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright (c) 2013 Kamil Kisiel + MIT License Copyright (c) @@ -59793,17 +58884,40 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fklauspost%2Fcpuid/v2 v2.0.4 - MIT + + +Copyright (c) 2015 Klaus Post +Copyright (c) 2020 Klaus Post +Copyright 2018 The Go Authors +Copyright (c) 2015- Klaus Post & Contributors + +MIT License -github.com%2Fmitchellh/go-wordwrap v1.0.1 - MIT +Copyright (c) +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: -Copyright (c) 2014 Mitchell Hashimoto +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkonsorten/go-windows-terminal-sequences v1.0.1 - MIT + + +Copyright (c) 2017 marvin + konsorten GmbH (open-source@konsorten.de) +Copyright (c) 2018 marvin + konsorten GmbH (open-source@konsorten.de) + MIT License Copyright (c) @@ -59812,17 +58926,37 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkr/logfmt v0.0.0-20140226030751-b84e30acd515 - MIT + + +Copyright 2010 The Go Authors +Copyright (c) 2013 Keith Rarick, Blake Mizerany + +MIT License -github.com%2Fmitchellh/mapstructure v1.5.0 - MIT +Copyright (c) +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: -Copyright (c) 2013 Mitchell Hashimoto +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkr/pretty v0.3.1 - MIT + + +Copyright 2012 Keith Rarick + MIT License Copyright (c) @@ -59831,17 +58965,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkr/pty v1.1.1 - MIT + + +Copyright (c) 2011 Keith Rarick + +MIT License -github.com%2Fmitchellh/reflectwalk v1.0.2 - MIT +Copyright (c) +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: -Copyright (c) 2013 Mitchell Hashimoto +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fkr/text v0.2.0 - MIT + + +Copyright 2012 Keith Rarick + MIT License Copyright (c) @@ -59850,17 +59003,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fk-sone/critbitgo v1.4.0 - MIT + + +Copyright (c) 2015 Keita Sone + +MIT License -github.com%2Fmonochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 - MIT +Copyright (c) +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: -Copyright (c) 2015 go-gitignore +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flann/builder v0.0.0-20180802200727-47ae307949d0 - MIT + + +Copyright (c) 2014-2015 Lann Martin + MIT License Copyright (c) @@ -59869,16 +59041,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flann/ps v0.0.0-20150810152359-62de8c46ede0 - MIT + + +Copyright (c) 2013 Michael Hendricks + +MIT License -github.com%2fmontanaflynn/stats v0.7.0 - MIT +Copyright (c) +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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flestrrat-go%2Fbackoff/v2 v2.0.8 - MIT + + +Copyright (c) 2018 lestrrat + MIT License Copyright (c) @@ -59887,17 +59079,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flestrrat-go/blackmagic v1.0.1 - MIT + + +Copyright (c) 2021 lestrrat-go + +MIT License -github.com%2Fmorikuni/aec v1.0.0 - MIT +Copyright (c) +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: -Copyright (c) 2016 Taihei Morikuni +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flestrrat-go/httpcc v1.0.1 - MIT + + +Copyright (c) 2020 lestrrat-go + MIT License Copyright (c) @@ -59906,17 +59117,37 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flestrrat-go/iter v1.0.2 - MIT + + +Copyright (c) 2020 lestrrat-go + +MIT License -github.com%2Fniemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e - MIT +Copyright (c) +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: -Copyright 2012 Keith Rarick +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flestrrat-go/jwx v1.2.26 - MIT + + +Copyright (c) 2015 lestrrat +Copyright 2016 The Go Authors + MIT License Copyright (c) @@ -59925,22 +59156,38 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flestrrat-go/option v1.0.1 - MIT + + +Copyright (c) 2021 lestrrat-go + +MIT License -github.com%2Fnxadm/tail v1.4.11 - MIT +Copyright (c) +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: -Copyright (c) 2013 99designs -Copyright (c) 2014 ActiveState -Copyright (c) 2015 HPE Software Inc. -Copyright (c) 2019 FOSS contributors -Copyright (c) 2013 ActiveState Software Inc. -(c) Copyright 2015 Hewlett Packard Enterprise Development LP +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2flib/pq v1.10.9 - MIT + + +Copyright (c) 2011-2013, pq Contributors +Portions Copyright (c) 2011 Blake Mizerany +Copyright (c) 2014 - Gustavo Niemeyer + MIT License Copyright (c) @@ -59949,18 +59196,37 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Flithammer/dedent v1.1.0 - MIT + + +Copyright (c) 2018 Peter Lithammer + +MIT License -github.com%2Folekukonko/tablewriter v0.0.5 - MIT +Copyright (c) +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: -Copyright 2014 Oleku Konko -Copyright (c) 2014 by Oleku Konko +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmailru/easyjson v0.7.7 - MIT + + +Copyright (c) 2016 Mail.Ru Group +Copyright (c) 2009 The Go Authors + MIT License Copyright (c) @@ -59969,20 +59235,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmakenowjust/heredoc v1.0.0 - MIT + + +Copyright (c) 2014-2019 TSUYUSATO Kitsune + +MIT License -github.com%2Fonsi/ginkgo v1.16.5 - MIT +Copyright (c) +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: -Copyright 2013 The Go Authors -Copyright (c) 2013-2014 Onsi Fakhouri -Copyright (c) 2016 Yasuhiro Matsumoto -Copyright (c) Yasuhiro MATSUMOTO +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmarkbates/errx v1.1.0 - MIT + + +Copyright (c) 2019 Mark Bates + MIT License Copyright (c) @@ -59991,17 +59273,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmarkbates/oncer v1.0.0 - MIT + + +Copyright (c) 2019 Mark Bates + +MIT License -github.com%2Fpelletier%2Fgo-toml/v2 v2.1.0 - MIT +Copyright (c) +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: -Copyright (c) 2021 - 2023 Thomas Pelletier +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmarkbates/safe v1.0.1 - MIT + + +Copyright (c) 2018 Mark Bates + MIT License Copyright (c) @@ -60010,17 +59311,35 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmasterminds%2Fsemver/v3 v3.2.1 - MIT + + +Copyright (c) 2014-2019, Matt Butcher and Matt Farina + +MIT License -github.com%2Fpeterbourgon/diskv v2.0.1+incompatible - MIT +Copyright (c) +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: -Copyright (c) 2011-2012 Peter Bourgon +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmasterminds%2Fsprig/v3 v3.2.3 - MIT + + + MIT License Copyright (c) @@ -60029,17 +59348,38 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fmasterminds/squirrel v1.5.4 - MIT + + +Copyright (c) 2015-2016, Google +Copyright (c) 2014-2015, Lann Martin +Copyright (c) 2015, Matt Farina and Matt Butcher + +MIT License -github.com%2Fposener/complete v1.2.3 - MIT +Copyright (c) +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: -Copyright (c) 2017 Eyal Posener +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmasterminds/vcs v1.13.3 - MIT + + +Copyright (c) 2014-2015, Matt Butcher and Matt Farina + MIT License Copyright (c) @@ -60048,18 +59388,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmattn/go-colorable v0.1.13 - MIT + + +Copyright (c) 2016 Yasuhiro Matsumoto + +MIT License -github.com%2Fpower-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c - MIT +Copyright (c) +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: -Copyright (c) 2020 Power DevOps -Copyright 2020 Power-Devops.com +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmattn/go-isatty v0.0.17 - MIT + + +Copyright (c) Yasuhiro MATSUMOTO + MIT License Copyright (c) @@ -60068,17 +59426,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmattn/go-oci8 v0.1.1 - MIT + + +Copyright (c) 2014-2018 Yasuhiro Matsumoto, http://mattn.kaoriya.net + +MIT License -github.com%2Fpoy/onpar v1.1.2 - MIT +Copyright (c) +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: -Copyright (c) 2016 Andrew Poydence +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmattn/go-runewidth v0.0.9 - MIT + + +Copyright (c) 2016 Yasuhiro Matsumoto + MIT License Copyright (c) @@ -60087,19 +59464,35 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmattn/go-shellwords v1.0.12 - MIT + + +Copyright (c) 2017 Yasuhiro Matsumoto + +MIT License -github.com%2frubenv/sql-migrate v1.5.2 - MIT +Copyright (c) +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: -Copyright (c) 2012-2014 by Liam Staskawicz -Copyright (c) 2014-2017 by Ruben Vermeersch -Copyright (c) 2014-2021 by Ruben Vermeersch +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmattn/go-sqlite3 v1.14.15 - MIT + + + MIT License Copyright (c) @@ -60108,16 +59501,37 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmdlayher/arp v0.0.0-20220221190821-c37aaafac7f9 - MIT + + +Copyright (c) 2015 Matt Layher +Copyright (c) 2012 The Go Authors + +MIT License -github.com%2Fryanuber/columnize v0.0.0-20160712163229-9b3edd62028f - MIT +Copyright (c) +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: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmdlayher/ethernet v0.0.0-20220221185849-529eae5b6118 - MIT + + +Copyright (c) 2015 Matt Layher + MIT License Copyright (c) @@ -60126,17 +59540,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmdlayher/ethtool v0.0.0-20210210192532-2b88debcdd43 - MIT + + +Copyright (c) 2021 Matt Layher + +MIT License -github.com%2Fsagikazarmark/crypt v0.17.0 - MIT +Copyright (c) +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: -Copyright (c) 2014 XOR Data Exchange, Inc. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmdlayher/genetlink v1.3.2 - MIT + + +Copyright (c) 2016-2022 Matt Layher + MIT License Copyright (c) @@ -60145,17 +59578,37 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmdlayher/ndp v0.0.0-20200602162440-17ab9e3e5567 - MIT + + +Copyright (c) 2017-2018 Matt Layher + +MIT License -github.com%2Fsagikazarmark/locafero v0.4.0 - MIT +Copyright (c) +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: -Copyright (c) 2023 Mark Sagi-Kazar +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmdlayher/netlink v1.7.2 - MIT + + +Copyright 2009 The Go Authors +Copyright (c) 2016-2022 Matt Layher + MIT License Copyright (c) @@ -60164,17 +59617,37 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmdlayher/packet v1.1.2 - MIT + + +Copyright (c) 2022 Matt Layher + +MIT License -github.com%2Fshopify/logrus-bugsnag v0.0.0-20171204204709-577dee27f20d - MIT +Copyright (c) +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: -Copyright (c) 2016 Shopify +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fmdlayher/socket v0.4.1 - MIT + + +Copyright 2016 The Go Authors +Copyright (c) 2021 Matt Layher + MIT License Copyright (c) @@ -60183,19 +59656,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmicrosoft/applicationinsights-go v0.4.4 - MIT + + +Copyright (c) 2015-2017 Microsoft + +MIT License -github.com%2Fshopspring/decimal v1.3.1 - MIT +Copyright (c) +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: -Copyright 2009 The Go Authors -Copyright (c) 2013 Oguz Bilgic -Copyright (c) 2015 Spring, Inc. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fmicrosoft/cosesign1go v0.0.1 - MIT + + +Copyright (c) Microsoft Corporation + MIT License Copyright (c) @@ -60204,18 +59694,37 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fmicrosoft/didx509go v0.0.2 - MIT + + +Copyright (c) Microsoft Corporation + +MIT License -github.com%2fsirupsen/logrus v1.9.3 - MIT +Copyright (c) +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: -Copyright (c) 2014 Simon Eskildsen -Copyright (c) 2012 Miki Tebeka +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fmicrosoft/go-winio v0.6.1 - MIT + + +Copyright (c) 2015 Microsoft +Copyright 2013 The Go Authors + MIT License Copyright (c) @@ -60224,17 +59733,39 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmicrosoft/hcsshim v0.12.0-rc.3 - MIT + + +Copyright 2014 Docker, Inc. +Copyright (c) 2015 Microsoft +Copyright 2012-2015 Docker, Inc. +Copyright (c) 2018 Microsoft Corp. + +MIT License -github.com%2Fsourcegraph/conc v0.3.0 - MIT +Copyright (c) +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: -Copyright (c) 2023 Sourcegraph +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmitchellh/copystructure v1.2.0 - MIT + + +Copyright (c) 2014 Mitchell Hashimoto + MIT License Copyright (c) @@ -60243,19 +59774,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmitchellh/go-homedir v1.1.0 - MIT + + +Copyright (c) 2013 Mitchell Hashimoto + +MIT License -github.com%2Fspf13/cast v1.6.0 - MIT +Copyright (c) +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: -Copyright 2011 The Go Authors -Copyright (c) 2014 Steve Francia -Copyright (c) 2014 Steve Francia +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmitchellh/go-wordwrap v1.0.1 - MIT + + +Copyright (c) 2014 Mitchell Hashimoto + MIT License Copyright (c) @@ -60264,20 +59812,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmitchellh/mapstructure v1.5.0 - MIT + + +Copyright (c) 2013 Mitchell Hashimoto + +MIT License -github.com%2fspf13/viper v1.18.2 - MIT +Copyright (c) +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: -Copyright (c) 2014 Steve Francia -Copyright (c) 2014 Steve Francia -Copyright (c) 2015 Steve Francia -Copyright (c) 2016 Steve Francia +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmitchellh/reflectwalk v1.0.2 - MIT + + +Copyright (c) 2013 Mitchell Hashimoto + MIT License Copyright (c) @@ -60286,18 +59850,35 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmonochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 - MIT + + +Copyright (c) 2015 go-gitignore + +MIT License -github.com%2Fstoewer/go-strcase v1.2.0 - MIT +Copyright (c) +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: -Copyright (c) 2017, A. Stoewer -Copyright (c) 2017, Adrian Stoewer +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fmontanaflynn/stats v0.7.0 - MIT + + + MIT License Copyright (c) @@ -60306,18 +59887,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmorikuni/aec v1.0.0 - MIT + + +Copyright (c) 2016 Taihei Morikuni + +MIT License -github.com%2Fstretchr/objx v0.5.0 - MIT +Copyright (c) +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: -Copyright (c) 2014 Stretchr, Inc. -Copyright (c) 2017-2018 objx contributors +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fniemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e - MIT + + +Copyright 2012 Keith Rarick + MIT License Copyright (c) @@ -60326,17 +59925,42 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fnxadm/tail v1.4.11 - MIT + + +Copyright (c) 2013 99designs +Copyright (c) 2014 ActiveState +Copyright (c) 2015 HPE Software Inc. +Copyright (c) 2019 FOSS contributors +Copyright (c) 2013 ActiveState Software Inc. +(c) Copyright 2015 Hewlett Packard Enterprise Development LP + +MIT License -github.com%2Fstretchr/testify v1.8.4 - MIT +Copyright (c) +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: -Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Folekukonko/tablewriter v0.0.5 - MIT + + +Copyright 2014 Oleku Konko +Copyright (c) 2014 by Oleku Konko + MIT License Copyright (c) @@ -60345,17 +59969,39 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fonsi/ginkgo v1.16.5 - MIT + + +Copyright 2013 The Go Authors +Copyright (c) 2013-2014 Onsi Fakhouri +Copyright (c) 2016 Yasuhiro Matsumoto +Copyright (c) Yasuhiro MATSUMOTO + +MIT License -github.com%2Fsubosito/gotenv v1.6.0 - MIT +Copyright (c) +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: -Copyright (c) 2013 Alif Rachmawadi +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fpelletier%2Fgo-toml/v2 v2.1.0 - MIT + + +Copyright (c) 2021 - 2023 Thomas Pelletier + MIT License Copyright (c) @@ -60364,18 +60010,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fpeterbourgon/diskv v2.0.1+incompatible - MIT + + +Copyright (c) 2011-2012 Peter Bourgon + +MIT License -github.com%2Ftchap%2Fgo-patricia/v2 v2.3.1 - MIT +Copyright (c) +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: -Copyright (c) 2014 The -Copyright (c) 2014 The go-patricia +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fposener/complete v1.2.3 - MIT + + +Copyright (c) 2017 Eyal Posener + MIT License Copyright (c) @@ -60384,17 +60048,37 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fpower-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c - MIT + + +Copyright (c) 2020 Power DevOps +Copyright 2020 Power-Devops.com + +MIT License -github.com%2Ftedsuo/ifrit v0.0.0-20180802180643-bea94bb476cc - MIT +Copyright (c) +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: -Copyright (c) 2014 Theodore Young +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fpoy/onpar v1.1.2 - MIT + + +Copyright (c) 2016 Andrew Poydence + MIT License Copyright (c) @@ -60403,17 +60087,37 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2frubenv/sql-migrate v1.5.2 - MIT + + +Copyright (c) 2012-2014 by Liam Staskawicz +Copyright (c) 2014-2017 by Ruben Vermeersch +Copyright (c) 2014-2021 by Ruben Vermeersch + +MIT License -github.com%2Ftidwall/gjson v1.17.0 - MIT +Copyright (c) +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: -Copyright (c) 2016 Josh Baker +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fryanuber/columnize v0.0.0-20160712163229-9b3edd62028f - MIT + + + MIT License Copyright (c) @@ -60422,17 +60126,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fsagikazarmark/crypt v0.17.0 - MIT + + +Copyright (c) 2014 XOR Data Exchange, Inc. + +MIT License -github.com%2Ftidwall/match v1.1.1 - MIT +Copyright (c) +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: -Copyright (c) 2016 Josh Baker +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fsagikazarmark/locafero v0.4.0 - MIT + + +Copyright (c) 2023 Mark Sagi-Kazar + MIT License Copyright (c) @@ -60441,17 +60164,38 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fshopify/logrus-bugsnag v0.0.0-20171204204709-577dee27f20d - MIT + + +Copyright (c) 2016 Shopify + +MIT License -github.com%2Ftidwall/pretty v1.2.0 - MIT +Copyright (c) +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: -Copyright (c) 2017 Josh Baker +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fshopspring/decimal v1.3.1 - MIT + + +Copyright 2009 The Go Authors +Copyright (c) 2013 Oguz Bilgic +Copyright (c) 2015 Spring, Inc. + MIT License Copyright (c) @@ -60460,17 +60204,37 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fsirupsen/logrus v1.9.3 - MIT + + +Copyright (c) 2014 Simon Eskildsen +Copyright (c) 2012 Miki Tebeka + +MIT License -github.com%2Ftidwall/sjson v1.2.5 - MIT +Copyright (c) +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: -Copyright (c) 2016 Josh Baker +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fsourcegraph/conc v0.3.0 - MIT + + +Copyright (c) 2023 Sourcegraph + MIT License Copyright (c) @@ -60479,17 +60243,41 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fspf13/cast v1.6.0 - MIT + + +Copyright 2011 The Go Authors +Copyright (c) 2014 Steve Francia +Copyright (c) 2014 Steve Francia + +MIT License -github.com%2Ftmc/grpc-websocket-proxy v0.0.0-20220101234140-673ab2c3ae75 - MIT +Copyright (c) +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: -Copyright (c) 2016 Travis Cline +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fspf13/viper v1.18.2 - MIT + + +Copyright (c) 2014 Steve Francia +Copyright (c) 2014 Steve Francia +Copyright (c) 2015 Steve Francia +Copyright (c) 2016 Steve Francia + MIT License Copyright (c) @@ -60498,17 +60286,38 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fstoewer/go-strcase v1.2.0 - MIT + + +Copyright (c) 2017, A. Stoewer +Copyright (c) 2017, Adrian Stoewer + +MIT License -github.com%2Ftv42/httpunix v0.0.0-20150427012821-b75d8614f926 - MIT +Copyright (c) +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: -Copyright (c) 2013-2015 Tommi Virtanen +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fstretchr/objx v0.5.0 - MIT + + +Copyright (c) 2014 Stretchr, Inc. +Copyright (c) 2017-2018 objx contributors + MIT License Copyright (c) @@ -60517,18 +60326,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fstretchr/testify v1.8.4 - MIT + + +Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors + +MIT License -github.com%2Furfave/cli v1.22.14 - MIT +Copyright (c) +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: -(c) 1999 Serious Enterprise -Copyright (c) 2023 Jeremy Saenz & Contributors +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fsubosito/gotenv v1.6.0 - MIT + + +Copyright (c) 2013 Alif Rachmawadi + MIT License Copyright (c) @@ -60537,19 +60364,37 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Ftchap%2Fgo-patricia/v2 v2.3.1 - MIT + + +Copyright (c) 2014 The +Copyright (c) 2014 The go-patricia + +MIT License -github.com%2Fvektah%2Fgqlparser/v2 v2.4.5 - MIT +Copyright (c) +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: -Copyright (c) 2018 Adam Scarr -Copyright (c) 2015, Facebook, Inc. -Copyright (c) 2015-present, Facebook, Inc. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Ftedsuo/ifrit v0.0.0-20180802180643-bea94bb476cc - MIT + + +Copyright (c) 2014 Theodore Young + MIT License Copyright (c) @@ -60558,18 +60403,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Ftidwall/gjson v1.17.0 - MIT + + +Copyright (c) 2016 Josh Baker + +MIT License -github.com%2Fx448/float16 v0.8.4 - MIT +Copyright (c) +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: -Copyright 2019 Montgomery Edwards448 and Faye Amacker -Copyright (c) 2019 Montgomery Edwards448 and Faye Amacker +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Ftidwall/match v1.1.1 - MIT + + +Copyright (c) 2016 Josh Baker + MIT License Copyright (c) @@ -60578,17 +60441,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Ftidwall/pretty v1.2.0 - MIT + + +Copyright (c) 2017 Josh Baker + +MIT License -github.com%2Fxiang90/probing v0.0.0-20190116061207-43a291ad63a2 - MIT +Copyright (c) +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: -Copyright (c) 2015 Xiang Li +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Ftidwall/sjson v1.2.5 - MIT + + +Copyright (c) 2016 Josh Baker + MIT License Copyright (c) @@ -60597,17 +60479,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Ftmc/grpc-websocket-proxy v0.0.0-20220101234140-673ab2c3ae75 - MIT + + +Copyright (c) 2016 Travis Cline + +MIT License -github.com%2Fxlab/treeprint v1.2.0 - MIT +Copyright (c) +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: -Copyright (c) 2016 Maxim Kupriianov +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Ftv42/httpunix v0.0.0-20150427012821-b75d8614f926 - MIT + + +Copyright (c) 2013-2015 Tommi Virtanen + MIT License Copyright (c) @@ -60616,17 +60517,39 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Furfave/cli v1.22.14 - MIT + + +(c) 1999 Serious Enterprise +Copyright (c) 2023 Jeremy Saenz & Contributors + +MIT License -github.com%2Fyoumark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d - MIT +Copyright (c) +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: -Copyright (c) 2014 youmark +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fvektah%2Fgqlparser/v2 v2.4.5 - MIT + + +Copyright (c) 2018 Adam Scarr +Copyright (c) 2015, Facebook, Inc. +Copyright (c) 2015-present, Facebook, Inc. + MIT License Copyright (c) @@ -60635,17 +60558,37 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fx448/float16 v0.8.4 - MIT + + +Copyright 2019 Montgomery Edwards448 and Faye Amacker +Copyright (c) 2019 Montgomery Edwards448 and Faye Amacker + +MIT License -github.com%2Fyuin/goldmark v1.4.13 - MIT +Copyright (c) +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: -Copyright (c) 2019 Yusuke Inuzuka +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fxiang90/probing v0.0.0-20190116061207-43a291ad63a2 - MIT + + +Copyright (c) 2015 Xiang Li + MIT License Copyright (c) @@ -60654,17 +60597,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fxlab/treeprint v1.2.0 - MIT + + +Copyright (c) 2016 Maxim Kupriianov + +MIT License -github.com%2Fyusufpapurcu/wmi v1.2.3 - MIT +Copyright (c) +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: -Copyright (c) 2013 Stack Exchange +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fyoumark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d - MIT + + +Copyright (c) 2014 youmark + MIT License Copyright (c) @@ -60673,17 +60635,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fyuin/goldmark v1.4.13 - MIT + + +Copyright (c) 2019 Yusuke Inuzuka + +MIT License -github.com%2Fzeebo/errs v1.3.0 - MIT +Copyright (c) +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: -Copyright (c) 2017 The Authors +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fyusufpapurcu/wmi v1.2.3 - MIT + + +Copyright (c) 2013 Stack Exchange + MIT License Copyright (c) @@ -60692,17 +60673,36 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fzeebo/errs v1.3.0 - MIT + + +Copyright (c) 2017 The Authors + +MIT License ---------------------------------------------------------- +Copyright (c) -global-dirs 3.0.1 - MIT -https://github.com/sindresorhus/global-dirs#readme +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: -Copyright (c) Sindre Sorhus (https://sindresorhus.com) +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +global-dirs 3.0.1 - MIT +https://github.com/sindresorhus/global-dirs#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -60712,19 +60712,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -global-modules 2.0.0 - MIT -https://github.com/jonschlinkert/global-modules - -Copyright (c) 2015-2017 Jon Schlinkert -Copyright (c) 2015-present, Jon Schlinkert -Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +global-modules 2.0.0 - MIT +https://github.com/jonschlinkert/global-modules + +Copyright (c) 2015-2017 Jon Schlinkert +Copyright (c) 2015-present, Jon Schlinkert +Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2015-present, Jon Schlinkert. @@ -60746,19 +60746,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -global-prefix 3.0.0 - MIT -https://github.com/jonschlinkert/global-prefix - -Copyright (c) 2015-present Jon Schlinkert -Copyright (c) 2015-present, Jon Schlinkert -Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +global-prefix 3.0.0 - MIT +https://github.com/jonschlinkert/global-prefix + +Copyright (c) 2015-present Jon Schlinkert +Copyright (c) 2015-present, Jon Schlinkert +Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2015-present, Jon Schlinkert. @@ -60780,18 +60780,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -globals 11.12.0 - MIT -https://github.com/sindresorhus/globals#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +globals 11.12.0 - MIT +https://github.com/sindresorhus/globals#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -60801,17 +60801,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -globby 11.1.0 - MIT -https://github.com/sindresorhus/globby#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +globby 11.1.0 - MIT +https://github.com/sindresorhus/globby#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -60821,17 +60821,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -globby 13.2.2 - MIT -https://github.com/sindresorhus/globby#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +globby 13.2.2 - MIT +https://github.com/sindresorhus/globby#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -60841,17 +60841,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.etcd.io/bbolt v1.3.8 - MIT - - -Copyright (c) 2013 Ben Johnson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.etcd.io/bbolt v1.3.8 - MIT + + +Copyright (c) 2013 Ben Johnson + MIT License Copyright (c) @@ -60860,17 +60860,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 - MIT - - -Copyright (c) 2015 Andrew Smith - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 - MIT + + +Copyright (c) 2015 Andrew Smith + MIT License Copyright (c) @@ -60879,24 +60879,24 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.uber.org/atomic v1.10.0 - MIT - - -Copyright (c) 2016 Uber Technologies, Inc. -Copyright (c) 2020 Uber Technologies, Inc. -Copyright (c) 2021 Uber Technologies, Inc. -Copyright (c) 2022 Uber Technologies, Inc. -Copyright (c) 2016-2020 Uber Technologies, Inc. -Copyright (c) 2020-2022 Uber Technologies, Inc. -Copyright (c) 2021-2022 Uber Technologies, Inc. -Copyright (c) 2020- .ToYear Uber Technologies, Inc. - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.uber.org/atomic v1.10.0 - MIT + + +Copyright (c) 2016 Uber Technologies, Inc. +Copyright (c) 2020 Uber Technologies, Inc. +Copyright (c) 2021 Uber Technologies, Inc. +Copyright (c) 2022 Uber Technologies, Inc. +Copyright (c) 2016-2020 Uber Technologies, Inc. +Copyright (c) 2020-2022 Uber Technologies, Inc. +Copyright (c) 2021-2022 Uber Technologies, Inc. +Copyright (c) 2020- .ToYear Uber Technologies, Inc. + MIT License Copyright (c) @@ -60905,24 +60905,24 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.uber.org/dig v1.17.1 - MIT - - -Copyright (c) Uber Technologies, Inc. -Copyright (c) 2019 Uber Technologies, Inc. -Copyright (c) 2020 Uber Technologies, Inc. -Copyright (c) 2021 Uber Technologies, Inc. -Copyright (c) 2022 Uber Technologies, Inc. -Copyright (c) 2023 Uber Technologies, Inc. -Copyright (c) 2017-2018 Uber Technologies, Inc. -Copyright (c) 2019-2021 Uber Technologies, Inc. - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.uber.org/dig v1.17.1 - MIT + + +Copyright (c) Uber Technologies, Inc. +Copyright (c) 2019 Uber Technologies, Inc. +Copyright (c) 2020 Uber Technologies, Inc. +Copyright (c) 2021 Uber Technologies, Inc. +Copyright (c) 2022 Uber Technologies, Inc. +Copyright (c) 2023 Uber Technologies, Inc. +Copyright (c) 2017-2018 Uber Technologies, Inc. +Copyright (c) 2019-2021 Uber Technologies, Inc. + MIT License Copyright (c) @@ -60931,21 +60931,21 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.uber.org/goleak v1.3.0 - MIT - - -Copyright (c) 2017 Uber Technologies, Inc. -Copyright (c) 2018 Uber Technologies, Inc. -Copyright (c) 2023 Uber Technologies, Inc. -Copyright (c) 2017-2023 Uber Technologies, Inc. -Copyright (c) 2021-2023 Uber Technologies, Inc. - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.uber.org/goleak v1.3.0 - MIT + + +Copyright (c) 2017 Uber Technologies, Inc. +Copyright (c) 2018 Uber Technologies, Inc. +Copyright (c) 2023 Uber Technologies, Inc. +Copyright (c) 2017-2023 Uber Technologies, Inc. +Copyright (c) 2021-2023 Uber Technologies, Inc. + MIT License Copyright (c) @@ -60954,22 +60954,22 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.uber.org/multierr v1.11.0 - MIT - - -Copyright (c) 2017 Uber Technologies, Inc. -Copyright (c) 2020 Uber Technologies, Inc. -Copyright (c) 2021 Uber Technologies, Inc. -Copyright (c) 2023 Uber Technologies, Inc. -Copyright (c) 2017-2021 Uber Technologies, Inc. -Copyright (c) 2017-2023 Uber Technologies, Inc. - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.uber.org/multierr v1.11.0 - MIT + + +Copyright (c) 2017 Uber Technologies, Inc. +Copyright (c) 2020 Uber Technologies, Inc. +Copyright (c) 2021 Uber Technologies, Inc. +Copyright (c) 2023 Uber Technologies, Inc. +Copyright (c) 2017-2021 Uber Technologies, Inc. +Copyright (c) 2017-2023 Uber Technologies, Inc. + MIT License Copyright (c) @@ -60978,27 +60978,27 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -go.uber.org/zap v1.26.0 - MIT - - -Copyright (c) Uber Technologies, Inc. -Copyright (c) 2016 Uber Technologies, Inc. -Copyright (c) 2017 Uber Technologies, Inc. -Copyright (c) 2018 Uber Technologies, Inc. -Copyright (c) 2020 Uber Technologies, Inc. -Copyright (c) 2021 Uber Technologies, Inc. -Copyright (c) 2022 Uber Technologies, Inc. -Copyright (c) 2023 Uber Technologies, Inc. -Copyright (c) 2016-2017 Uber Technologies, Inc. -Copyright (c) 2016-2022 Uber Technologies, Inc. -Copyright (c) 2016, 2017 Uber Technologies, Inc. - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +go.uber.org/zap v1.26.0 - MIT + + +Copyright (c) Uber Technologies, Inc. +Copyright (c) 2016 Uber Technologies, Inc. +Copyright (c) 2017 Uber Technologies, Inc. +Copyright (c) 2018 Uber Technologies, Inc. +Copyright (c) 2020 Uber Technologies, Inc. +Copyright (c) 2021 Uber Technologies, Inc. +Copyright (c) 2022 Uber Technologies, Inc. +Copyright (c) 2023 Uber Technologies, Inc. +Copyright (c) 2016-2017 Uber Technologies, Inc. +Copyright (c) 2016-2022 Uber Technologies, Inc. +Copyright (c) 2016, 2017 Uber Technologies, Inc. + MIT License Copyright (c) @@ -61007,19 +61007,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.zx2c4.com%2Fwireguard/wgctrl v0.0.0-20230429144221-925a1e7659e6 - MIT - - -Copyright (c) 2018-2022 Matt Layher -Copyright (c) 2017-2021 WireGuard LLC. -Copyright (C) 2017-2021 WireGuard LLC. All Rights Reserved. - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.zx2c4.com%2Fwireguard/wgctrl v0.0.0-20230429144221-925a1e7659e6 - MIT + + +Copyright (c) 2018-2022 Matt Layher +Copyright (c) 2017-2021 WireGuard LLC. +Copyright (C) 2017-2021 WireGuard LLC. All Rights Reserved. + MIT License Copyright (c) @@ -61028,18 +61028,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 - MIT - - -Copyright (c) 2017-2021 WireGuard LLC. -Copyright (C) 2017-2021 WireGuard LLC. All Rights Reserved. - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 - MIT + + +Copyright (c) 2017-2021 WireGuard LLC. +Copyright (C) 2017-2021 WireGuard LLC. All Rights Reserved. + MIT License Copyright (c) @@ -61048,17 +61048,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopd 1.0.1 - MIT -https://github.com/ljharb/gopd#readme - -Copyright (c) 2022 Jordan Harband - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopd 1.0.1 - MIT +https://github.com/ljharb/gopd#readme + +Copyright (c) 2022 Jordan Harband + MIT License Copyright (c) 2022 Jordan Harband @@ -61080,17 +61080,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in%2Falecthomas/kingpin.v2 v2.2.6 - MIT - - -Copyright (c) 2014 Alec Thomas - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in%2Falecthomas/kingpin.v2 v2.2.6 - MIT + + +Copyright (c) 2014 Alec Thomas + MIT License Copyright (c) @@ -61099,17 +61099,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -gopkg.in%2fnatefinch/lumberjack.v2 v2.2.1 - MIT - - -Copyright (c) 2014 Nate Finch - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +gopkg.in%2fnatefinch/lumberjack.v2 v2.2.1 - MIT + + +Copyright (c) 2014 Nate Finch + MIT License Copyright (c) @@ -61118,17 +61118,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -got 14.0.0 - MIT -https://github.com/sindresorhus/got#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +got 14.0.0 - MIT +https://github.com/sindresorhus/got#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -61138,18 +61138,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -gray-matter 4.0.3 - MIT -https://github.com/jonschlinkert/gray-matter - -Copyright (c) 2014-2018, Jon Schlinkert -Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +gray-matter 4.0.3 - MIT +https://github.com/jonschlinkert/gray-matter + +Copyright (c) 2014-2018, Jon Schlinkert +Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2014-2018, Jon Schlinkert. @@ -61171,17 +61171,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -gzip-size 6.0.0 - MIT -https://github.com/sindresorhus/gzip-size#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +gzip-size 6.0.0 - MIT +https://github.com/sindresorhus/gzip-size#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -61191,17 +61191,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -handle-thing 2.0.1 - MIT -https://github.com/spdy-http2/handle-thing#readme - -Copyright Fedor Indutny, 2015 - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +handle-thing 2.0.1 - MIT +https://github.com/spdy-http2/handle-thing#readme + +Copyright Fedor Indutny, 2015 + MIT License Copyright (c) @@ -61210,18 +61210,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -has-flag 4.0.0 - MIT -https://github.com/sindresorhus/has-flag#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +has-flag 4.0.0 - MIT +https://github.com/sindresorhus/has-flag#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -61231,17 +61231,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -hasown 2.0.0 - MIT -https://github.com/inspect-js/hasOwn#readme - -Copyright (c) Jordan Harband and contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +hasown 2.0.0 - MIT +https://github.com/inspect-js/hasOwn#readme + +Copyright (c) Jordan Harband and contributors + MIT License Copyright (c) Jordan Harband and contributors @@ -61263,17 +61263,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -has-property-descriptors 1.0.1 - MIT -https://github.com/inspect-js/has-property-descriptors#readme - -Copyright (c) 2022 Inspect JS - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +has-property-descriptors 1.0.1 - MIT +https://github.com/inspect-js/has-property-descriptors#readme + +Copyright (c) 2022 Inspect JS + MIT License Copyright (c) 2022 Inspect JS @@ -61295,17 +61295,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -has-proto 1.0.1 - MIT -https://github.com/inspect-js/has-proto#readme - -Copyright (c) 2022 Inspect JS - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +has-proto 1.0.1 - MIT +https://github.com/inspect-js/has-proto#readme + +Copyright (c) 2022 Inspect JS + MIT License Copyright (c) 2022 Inspect JS @@ -61327,17 +61327,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -has-symbols 1.0.3 - MIT -https://github.com/ljharb/has-symbols#readme - -Copyright (c) 2016 Jordan Harband - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +has-symbols 1.0.3 - MIT +https://github.com/ljharb/has-symbols#readme + +Copyright (c) 2016 Jordan Harband + MIT License Copyright (c) 2016 Jordan Harband @@ -61359,18 +61359,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -hastscript 8.0.0 - MIT -https://github.com/syntax-tree/hastscript#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +hastscript 8.0.0 - MIT +https://github.com/syntax-tree/hastscript#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -61393,18 +61393,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -hast-util-from-parse5 8.0.1 - MIT -https://github.com/syntax-tree/hast-util-from-parse5#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +hast-util-from-parse5 8.0.1 - MIT +https://github.com/syntax-tree/hast-util-from-parse5#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -61427,18 +61427,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -hast-util-parse-selector 4.0.0 - MIT -https://github.com/syntax-tree/hast-util-parse-selector#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +hast-util-parse-selector 4.0.0 - MIT +https://github.com/syntax-tree/hast-util-parse-selector#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -61461,18 +61461,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -hast-util-raw 9.0.1 - MIT -https://github.com/syntax-tree/hast-util-raw#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +hast-util-raw 9.0.1 - MIT +https://github.com/syntax-tree/hast-util-raw#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -61495,18 +61495,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -hast-util-to-estree 3.1.0 - MIT -https://github.com/syntax-tree/hast-util-to-estree#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +hast-util-to-estree 3.1.0 - MIT +https://github.com/syntax-tree/hast-util-to-estree#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -61529,18 +61529,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -hast-util-to-jsx-runtime 2.3.0 - MIT -https://github.com/syntax-tree/hast-util-to-jsx-runtime#readme - -(c) Titus Wormer -Copyright (c) 2023 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +hast-util-to-jsx-runtime 2.3.0 - MIT +https://github.com/syntax-tree/hast-util-to-jsx-runtime#readme + +(c) Titus Wormer +Copyright (c) 2023 Titus Wormer + (The MIT License) Copyright (c) 2023 Titus Wormer @@ -61563,18 +61563,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -hast-util-to-parse5 8.0.0 - MIT -https://github.com/syntax-tree/hast-util-to-parse5#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +hast-util-to-parse5 8.0.0 - MIT +https://github.com/syntax-tree/hast-util-to-parse5#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -61597,18 +61597,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -hast-util-whitespace 3.0.0 - MIT -https://github.com/syntax-tree/hast-util-whitespace#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +hast-util-whitespace 3.0.0 - MIT +https://github.com/syntax-tree/hast-util-whitespace#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -61631,17 +61631,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -has-yarn 3.0.0 - MIT -https://github.com/sindresorhus/has-yarn#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +has-yarn 3.0.0 - MIT +https://github.com/sindresorhus/has-yarn#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -61651,17 +61651,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -he 1.2.0 - MIT -https://mths.be/he - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +he 1.2.0 - MIT +https://mths.be/he + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -61682,17 +61682,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -history 4.10.1 - MIT -https://github.com/ReactTraining/history#readme - -Copyright (c) React Training 2016-2018 - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +history 4.10.1 - MIT +https://github.com/ReactTraining/history#readme + +Copyright (c) React Training 2016-2018 + MIT License Copyright (c) React Training 2016-2018 @@ -61714,35 +61714,35 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -honnef.co%2Fgo/tools v0.4.5 - MIT - - -Copyright 2009 The Go Authors -Copyright 2010 The Go Authors -Copyright 2011 The Go Authors -Copyright 2013 The Go Authors -Copyright 2014 The Go Authors -Copyright 2015 The Go Authors -Copyright 2016 Dominik Honnef -Copyright 2017 The Go Authors -Copyright 2018 The Go Authors -Copyright 2019 Dominik Honnef -Copyright 2019 The Go Authors -Copyright 2021 The Go Authors -Copyright (c) 2013 TOML authors -Copyright (c) 2014 Dmitry Vyukov -Copyright (c) 2017, Daniel Marti -Copyright (c) 2009 The Go Authors -Copyright (c) 2013 The Go Authors -Copyright (c) 2016 Dominik Honnef -Copyright (c) 2018 Dominik Honnef - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +honnef.co%2Fgo/tools v0.4.5 - MIT + + +Copyright 2009 The Go Authors +Copyright 2010 The Go Authors +Copyright 2011 The Go Authors +Copyright 2013 The Go Authors +Copyright 2014 The Go Authors +Copyright 2015 The Go Authors +Copyright 2016 Dominik Honnef +Copyright 2017 The Go Authors +Copyright 2018 The Go Authors +Copyright 2019 Dominik Honnef +Copyright 2019 The Go Authors +Copyright 2021 The Go Authors +Copyright (c) 2013 TOML authors +Copyright (c) 2014 Dmitry Vyukov +Copyright (c) 2017, Daniel Marti +Copyright (c) 2009 The Go Authors +Copyright (c) 2013 The Go Authors +Copyright (c) 2016 Dominik Honnef +Copyright (c) 2018 Dominik Honnef + MIT License Copyright (c) @@ -61751,17 +61751,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -hpack.js 2.1.6 - MIT -https://github.com/indutny/hpack.js#readme - -Copyright Fedor Indutny, 2015 - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +hpack.js 2.1.6 - MIT +https://github.com/indutny/hpack.js#readme + +Copyright Fedor Indutny, 2015 + MIT License Copyright (c) @@ -61770,17 +61770,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -html-entities 2.4.0 - MIT -https://github.com/mdevils/html-entities#readme - -Copyright (c) 2021 Dulin Marat - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +html-entities 2.4.0 - MIT +https://github.com/mdevils/html-entities#readme + +Copyright (c) 2021 Dulin Marat + Copyright (c) 2021 Dulin Marat Permission is hereby granted, free of charge, to any person obtaining a copy @@ -61800,17 +61800,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -html-escaper 2.0.2 - MIT -https://github.com/WebReflection/html-escaper - -Copyright (c) 2017-present by Andrea Giammarchi - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +html-escaper 2.0.2 - MIT +https://github.com/WebReflection/html-escaper + +Copyright (c) 2017-present by Andrea Giammarchi + Copyright (C) 2017-present by Andrea Giammarchi - @WebReflection Permission is hereby granted, free of charge, to any person obtaining a copy @@ -61830,18 +61830,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -html-minifier-terser 6.1.0 - MIT -https://terser.org/html-minifier-terser/ - -Copyright (c) 2014-2016 Zoltan Frombach -Copyright (c) 2010-2019 Juriy kangax Zaytsev - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +html-minifier-terser 6.1.0 - MIT +https://terser.org/html-minifier-terser/ + +Copyright (c) 2014-2016 Zoltan Frombach +Copyright (c) 2010-2019 Juriy kangax Zaytsev + Copyright (c) 2010-2019 Juriy "kangax" Zaytsev Permission is hereby granted, free of charge, to any person @@ -61864,25 +61864,25 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -html-minifier-terser 7.2.0 - MIT -https://terser.org/html-minifier-terser/ - -Copyright (c) 2016 CoderPuppy -Copyright (c) 2014-2016 Zoltan Frombach -Copyright 2011 The Closure Compiler Authors -Copyright (c) 2010-2019 Juriy kangax Zaytsev -Copyright 2011 Mozilla Foundation and contributors -Copyright 2014 Mozilla Foundation and contributors -Copyright Joyent, Inc. and other Node contributors -Copyright 2012 (c) Mihai Bazon -Copyright 2009-2011 Mozilla Foundation and contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +html-minifier-terser 7.2.0 - MIT +https://terser.org/html-minifier-terser/ + +Copyright (c) 2016 CoderPuppy +Copyright (c) 2014-2016 Zoltan Frombach +Copyright 2011 The Closure Compiler Authors +Copyright (c) 2010-2019 Juriy kangax Zaytsev +Copyright 2011 Mozilla Foundation and contributors +Copyright 2014 Mozilla Foundation and contributors +Copyright Joyent, Inc. and other Node contributors +Copyright 2012 (c) Mihai Bazon +Copyright 2009-2011 Mozilla Foundation and contributors + Copyright (c) 2010-2019 Juriy "kangax" Zaytsev Permission is hereby granted, free of charge, to any person @@ -61905,17 +61905,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -htmlparser2 6.1.0 - MIT -https://github.com/fb55/htmlparser2#readme - -Copyright 2010, 2011, Chris Winberry - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +htmlparser2 6.1.0 - MIT +https://github.com/fb55/htmlparser2#readme + +Copyright 2010, 2011, Chris Winberry + Copyright 2010, 2011, Chris Winberry . All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to @@ -61933,17 +61933,17 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -htmlparser2 8.0.2 - MIT -https://github.com/fb55/htmlparser2#readme - -Copyright 2010, 2011, Chris Winberry - +IN THE SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +htmlparser2 8.0.2 - MIT +https://github.com/fb55/htmlparser2#readme + +Copyright 2010, 2011, Chris Winberry + Copyright 2010, 2011, Chris Winberry . All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to @@ -61961,17 +61961,17 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -html-tags 3.3.1 - MIT -https://github.com/sindresorhus/html-tags#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - +IN THE SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +html-tags 3.3.1 - MIT +https://github.com/sindresorhus/html-tags#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -61981,18 +61981,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -html-void-elements 3.0.0 - MIT -https://github.com/wooorm/html-void-elements#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +html-void-elements 3.0.0 - MIT +https://github.com/wooorm/html-void-elements#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -62015,17 +62015,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -html-webpack-plugin 5.6.0 - MIT -https://github.com/jantimon/html-webpack-plugin - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +html-webpack-plugin 5.6.0 - MIT +https://github.com/jantimon/html-webpack-plugin + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -62046,17 +62046,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -http2-wrapper 2.2.1 - MIT -https://github.com/szmarczak/http2-wrapper#readme - -Copyright (c) 2018 Szymon Marczak - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +http2-wrapper 2.2.1 - MIT +https://github.com/szmarczak/http2-wrapper#readme + +Copyright (c) 2018 Szymon Marczak + MIT License Copyright (c) 2018 Szymon Marczak @@ -62078,17 +62078,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -http-deceiver 1.2.7 - MIT -https://github.com/indutny/http-deceiver#readme - -Copyright Fedor Indutny, 2015 - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +http-deceiver 1.2.7 - MIT +https://github.com/indutny/http-deceiver#readme + +Copyright Fedor Indutny, 2015 + MIT License Copyright (c) @@ -62097,20 +62097,20 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -http-errors 1.6.3 - MIT -https://github.com/jshttp/http-errors#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2016 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong me@jongleberry.com -Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +http-errors 1.6.3 - MIT +https://github.com/jshttp/http-errors#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2016 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong me@jongleberry.com +Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com + The MIT License (MIT) @@ -62134,20 +62134,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -http-errors 2.0.0 - MIT -https://github.com/jshttp/http-errors#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2016 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong me@jongleberry.com -Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +http-errors 2.0.0 - MIT +https://github.com/jshttp/http-errors#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2016 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong me@jongleberry.com +Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com + The MIT License (MIT) @@ -62171,18 +62171,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -http-parser-js 0.5.8 - MIT -https://github.com/creationix/http-parser-js#readme - -Copyright Joyent, Inc. and other Node contributors -Copyright (c) 2015 Tim Caswell (https://github.com/creationix) and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +http-parser-js 0.5.8 - MIT +https://github.com/creationix/http-parser-js#readme + +Copyright Joyent, Inc. and other Node contributors +Copyright (c) 2015 Tim Caswell (https://github.com/creationix) and other contributors + Copyright (c) 2015 Tim Caswell (https://github.com/creationix) and other contributors. All rights reserved. @@ -62292,19 +62292,19 @@ of nodejs/io.js: FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ - - ---------------------------------------------------------- - ---------------------------------------------------------- - -http-proxy 1.18.1 - MIT -https://github.com/http-party/node-http-proxy#readme - -Copyright (c) 2010-2016 Charlie Robbins, Jarrett Cruger & the Contributors -Copyright (c) 2010 - 2016 Charlie Robbins, Jarrett Cruger & the Contributors -copyright header of example files e592c53 (https://github.com/http-party/node-http-proxy/commit/e592c53d1a23b7920d603a9e9ac294fc0e841f6d) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +http-proxy 1.18.1 - MIT +https://github.com/http-party/node-http-proxy#readme + +Copyright (c) 2010-2016 Charlie Robbins, Jarrett Cruger & the Contributors +Copyright (c) 2010 - 2016 Charlie Robbins, Jarrett Cruger & the Contributors +copyright header of example files e592c53 (https://github.com/http-party/node-http-proxy/commit/e592c53d1a23b7920d603a9e9ac294fc0e841f6d) + node-http-proxy @@ -62328,18 +62328,18 @@ copyright header of example files e592c53 (https://github.com/http-party/node-ht 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -http-proxy-middleware 2.0.6 - MIT -https://github.com/chimurai/http-proxy-middleware#readme - -Copyright (c) 2015 Steven Chim -Copyright (c) 2015-2022 Steven Chim - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +http-proxy-middleware 2.0.6 - MIT +https://github.com/chimurai/http-proxy-middleware#readme + +Copyright (c) 2015 Steven Chim +Copyright (c) 2015-2022 Steven Chim + The MIT License (MIT) Copyright (c) 2015 Steven Chim @@ -62362,18 +62362,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -iconv-lite 0.4.24 - MIT -https://github.com/ashtuchkin/iconv-lite - -Copyright (c) Microsoft Corporation -Copyright (c) 2011 Alexander Shtuchkin - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +iconv-lite 0.4.24 - MIT +https://github.com/ashtuchkin/iconv-lite + +Copyright (c) Microsoft Corporation +Copyright (c) 2011 Alexander Shtuchkin + Copyright (c) 2011 Alexander Shtuchkin Permission is hereby granted, free of charge, to any person obtaining @@ -62395,17 +62395,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ignore 5.3.0 - MIT -https://github.com/kaelzhang/node-ignore#readme - -Copyright (c) 2013 Kael Zhang , contributors http://kael.me - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ignore 5.3.0 - MIT +https://github.com/kaelzhang/node-ignore#readme + +Copyright (c) 2013 Kael Zhang , contributors http://kael.me + Copyright (c) 2013 Kael Zhang , contributors http://kael.me/ @@ -62426,17 +62426,17 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -image-size 1.0.2 - MIT -https://github.com/image-size/image-size#readme - -Copyright (c) 2017 Aditya Yadav, http://netroy.in - +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +image-size 1.0.2 - MIT +https://github.com/image-size/image-size#readme + +Copyright (c) 2017 Aditya Yadav, http://netroy.in + The MIT License (MIT) Copyright © 2017 Aditya Yadav, http://netroy.in @@ -62446,17 +62446,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -immer 9.0.21 - MIT -https://github.com/immerjs/immer#readme - -Copyright (c) 2017 Michel Weststrate - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +immer 9.0.21 - MIT +https://github.com/immerjs/immer#readme + +Copyright (c) 2017 Michel Weststrate + MIT License Copyright (c) 2017 Michel Weststrate @@ -62478,17 +62478,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -import-fresh 3.3.0 - MIT -https://github.com/sindresorhus/import-fresh#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +import-fresh 3.3.0 - MIT +https://github.com/sindresorhus/import-fresh#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -62498,18 +62498,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -import-lazy 4.0.0 - MIT -https://github.com/sindresorhus/import-lazy#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +import-lazy 4.0.0 - MIT +https://github.com/sindresorhus/import-lazy#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -62519,17 +62519,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -imurmurhash 0.1.4 - MIT -https://github.com/jensyt/imurmurhash-js - -Copyright (c) 2013 Gary Court, Jens Taylor - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +imurmurhash 0.1.4 - MIT +https://github.com/jensyt/imurmurhash-js + +Copyright (c) 2013 Gary Court, Jens Taylor + MIT License Copyright (c) @@ -62538,18 +62538,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -indent-string 4.0.0 - MIT -https://github.com/sindresorhus/indent-string#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +indent-string 4.0.0 - MIT +https://github.com/sindresorhus/indent-string#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -62559,17 +62559,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -infima 0.2.0-alpha.43 - MIT - - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +infima 0.2.0-alpha.43 - MIT + + +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) @@ -62578,16 +62578,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -inline-style-parser 0.1.1 - MIT -https://github.com/remarkablemark/inline-style-parser#readme - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +inline-style-parser 0.1.1 - MIT +https://github.com/remarkablemark/inline-style-parser#readme + + MIT License Copyright (c) @@ -62596,17 +62596,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -interpret 1.4.0 - MIT -https://github.com/gulpjs/interpret#readme - -Copyright (c) 2014-2018 Tyler Kellen , Blaine Bublitz , and Eric Schoffstall - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +interpret 1.4.0 - MIT +https://github.com/gulpjs/interpret#readme + +Copyright (c) 2014-2018 Tyler Kellen , Blaine Bublitz , and Eric Schoffstall + Copyright (c) 2014-2018 Tyler Kellen , Blaine Bublitz , and Eric Schoffstall Permission is hereby granted, free of charge, to any person @@ -62629,17 +62629,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -invariant 2.2.4 - MIT -https://github.com/zertosh/invariant#readme - -Copyright (c) 2013-present, Facebook, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +invariant 2.2.4 - MIT +https://github.com/zertosh/invariant#readme + +Copyright (c) 2013-present, Facebook, Inc. + MIT License Copyright (c) 2013-present, Facebook, Inc. @@ -62661,17 +62661,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ipaddr.js 1.9.1 - MIT -https://github.com/whitequark/ipaddr.js#readme - -Copyright (c) 2011-2017 whitequark - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ipaddr.js 1.9.1 - MIT +https://github.com/whitequark/ipaddr.js#readme + +Copyright (c) 2011-2017 whitequark + Copyright (C) 2011-2017 whitequark Permission is hereby granted, free of charge, to any person obtaining a copy @@ -62691,17 +62691,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ipaddr.js 2.1.0 - MIT -https://github.com/whitequark/ipaddr.js#readme - -Copyright (c) 2011-2017 whitequark - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ipaddr.js 2.1.0 - MIT +https://github.com/whitequark/ipaddr.js#readme + +Copyright (c) 2011-2017 whitequark + Copyright (C) 2011-2017 whitequark Permission is hereby granted, free of charge, to any person obtaining a copy @@ -62721,18 +62721,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-alphabetical 2.0.1 - MIT -https://github.com/wooorm/is-alphabetical#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-alphabetical 2.0.1 - MIT +https://github.com/wooorm/is-alphabetical#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -62755,18 +62755,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-alphanumerical 2.0.1 - MIT -https://github.com/wooorm/is-alphanumerical#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-alphanumerical 2.0.1 - MIT +https://github.com/wooorm/is-alphanumerical#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -62789,17 +62789,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -isarray 0.0.1 - MIT -https://github.com/juliangruber/isarray - -Copyright (c) 2013 Julian Gruber - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +isarray 0.0.1 - MIT +https://github.com/juliangruber/isarray + +Copyright (c) 2013 Julian Gruber + MIT License Copyright (c) @@ -62808,17 +62808,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-arrayish 0.2.1 - MIT -https://github.com/qix-/node-is-arrayish#readme - -Copyright (c) 2015 JD Ballard - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-arrayish 0.2.1 - MIT +https://github.com/qix-/node-is-arrayish#readme + +Copyright (c) 2015 JD Ballard + The MIT License (MIT) Copyright (c) 2015 JD Ballard @@ -62840,18 +62840,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-binary-path 2.1.0 - MIT -https://github.com/sindresorhus/is-binary-path#readme - -(c) Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com) -Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-binary-path 2.1.0 - MIT +https://github.com/sindresorhus/is-binary-path#readme + +(c) Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com) +Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com) + MIT License Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com) @@ -62861,17 +62861,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-ci 3.0.1 - MIT -https://github.com/watson/is-ci - -Copyright (c) 2016-2021 Thomas Watson Steen - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-ci 3.0.1 - MIT +https://github.com/watson/is-ci + +Copyright (c) 2016-2021 Thomas Watson Steen + The MIT License (MIT) Copyright (c) 2016-2021 Thomas Watson Steen @@ -62893,17 +62893,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-core-module 2.13.1 - MIT -https://github.com/inspect-js/is-core-module - -Copyright (c) 2014 Dave Justice - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-core-module 2.13.1 - MIT +https://github.com/inspect-js/is-core-module + +Copyright (c) 2014 Dave Justice + The MIT License (MIT) Copyright (c) 2014 Dave Justice @@ -62923,18 +62923,18 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-decimal 2.0.1 - MIT -https://github.com/wooorm/is-decimal#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-decimal 2.0.1 - MIT +https://github.com/wooorm/is-decimal#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -62957,17 +62957,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-docker 2.2.1 - MIT -https://github.com/sindresorhus/is-docker#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-docker 2.2.1 - MIT +https://github.com/sindresorhus/is-docker#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -62977,18 +62977,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-extendable 0.1.1 - MIT -https://github.com/jonschlinkert/is-extendable - -Copyright (c) 2015 Jon Schlinkert -Copyright (c) 2015, Jon Schlinkert - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-extendable 0.1.1 - MIT +https://github.com/jonschlinkert/is-extendable + +Copyright (c) 2015 Jon Schlinkert +Copyright (c) 2015, Jon Schlinkert + The MIT License (MIT) Copyright (c) 2015, Jon Schlinkert. @@ -63010,18 +63010,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-extglob 2.1.1 - MIT -https://github.com/jonschlinkert/is-extglob - -Copyright (c) 2014-2016, Jon Schlinkert -Copyright (c) 2016, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-extglob 2.1.1 - MIT +https://github.com/jonschlinkert/is-extglob + +Copyright (c) 2014-2016, Jon Schlinkert +Copyright (c) 2016, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2014-2016, Jon Schlinkert @@ -63043,18 +63043,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-fullwidth-code-point 3.0.0 - MIT -https://github.com/sindresorhus/is-fullwidth-code-point#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-fullwidth-code-point 3.0.0 - MIT +https://github.com/sindresorhus/is-fullwidth-code-point#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -63064,18 +63064,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-glob 4.0.3 - MIT -https://github.com/micromatch/is-glob - -Copyright (c) 2014-2017, Jon Schlinkert -Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-glob 4.0.3 - MIT +https://github.com/micromatch/is-glob + +Copyright (c) 2014-2017, Jon Schlinkert +Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2014-2017, Jon Schlinkert. @@ -63097,18 +63097,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-hexadecimal 2.0.1 - MIT -https://github.com/wooorm/is-hexadecimal#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-hexadecimal 2.0.1 - MIT +https://github.com/wooorm/is-hexadecimal#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -63131,17 +63131,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-installed-globally 0.4.0 - MIT -https://github.com/sindresorhus/is-installed-globally#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-installed-globally 0.4.0 - MIT +https://github.com/sindresorhus/is-installed-globally#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -63151,17 +63151,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-npm 6.0.0 - MIT -https://github.com/sindresorhus/is-npm#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-npm 6.0.0 - MIT +https://github.com/sindresorhus/is-npm#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -63171,18 +63171,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-number 7.0.0 - MIT -https://github.com/jonschlinkert/is-number - -Copyright (c) 2014-present, Jon Schlinkert -Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-number 7.0.0 - MIT +https://github.com/jonschlinkert/is-number + +Copyright (c) 2014-present, Jon Schlinkert +Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2014-present, Jon Schlinkert. @@ -63204,18 +63204,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-obj 1.0.1 - MIT -https://github.com/sindresorhus/is-obj#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-obj 1.0.1 - MIT +https://github.com/sindresorhus/is-obj#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + The MIT License (MIT) Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -63237,18 +63237,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-obj 2.0.0 - MIT -https://github.com/sindresorhus/is-obj#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-obj 2.0.0 - MIT +https://github.com/sindresorhus/is-obj#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -63258,18 +63258,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -isobject 3.0.1 - MIT -https://github.com/jonschlinkert/isobject - -Copyright (c) 2014-2017, Jon Schlinkert -Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +isobject 3.0.1 - MIT +https://github.com/jonschlinkert/isobject + +Copyright (c) 2014-2017, Jon Schlinkert +Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2014-2017, Jon Schlinkert. @@ -63290,18 +63290,18 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-path-cwd 2.2.0 - MIT -https://github.com/sindresorhus/is-path-cwd#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - +THE SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-path-cwd 2.2.0 - MIT +https://github.com/sindresorhus/is-path-cwd#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -63311,17 +63311,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-path-inside 3.0.3 - MIT -https://github.com/sindresorhus/is-path-inside#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-path-inside 3.0.3 - MIT +https://github.com/sindresorhus/is-path-inside#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -63331,17 +63331,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-plain-obj 3.0.0 - MIT -https://github.com/sindresorhus/is-plain-obj#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-plain-obj 3.0.0 - MIT +https://github.com/sindresorhus/is-plain-obj#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -63351,17 +63351,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-plain-obj 4.1.0 - MIT -https://github.com/sindresorhus/is-plain-obj#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-plain-obj 4.1.0 - MIT +https://github.com/sindresorhus/is-plain-obj#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -63371,18 +63371,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-plain-object 2.0.4 - MIT -https://github.com/jonschlinkert/is-plain-object - -Copyright (c) 2014-2017, Jon Schlinkert -Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-plain-object 2.0.4 - MIT +https://github.com/jonschlinkert/is-plain-object + +Copyright (c) 2014-2017, Jon Schlinkert +Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2014-2017, Jon Schlinkert. @@ -63404,18 +63404,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-plain-object 5.0.0 - MIT -https://github.com/jonschlinkert/is-plain-object - -Copyright (c) 2014-2017, Jon Schlinkert -Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-plain-object 5.0.0 - MIT +https://github.com/jonschlinkert/is-plain-object + +Copyright (c) 2014-2017, Jon Schlinkert +Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2014-2017, Jon Schlinkert. @@ -63437,16 +63437,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-reference 3.0.2 - MIT -https://github.com/Rich-Harris/is-reference#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-reference 3.0.2 - MIT +https://github.com/Rich-Harris/is-reference#readme + + MIT License Copyright (c) @@ -63455,17 +63455,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-regexp 1.0.0 - MIT -https://github.com/sindresorhus/is-regexp - -(c) Sindre Sorhus (http://sindresorhus.com) - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-regexp 1.0.0 - MIT +https://github.com/sindresorhus/is-regexp + +(c) Sindre Sorhus (http://sindresorhus.com) + MIT License Copyright (c) @@ -63474,18 +63474,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-root 2.1.0 - MIT -https://github.com/sindresorhus/is-root#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-root 2.1.0 - MIT +https://github.com/sindresorhus/is-root#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -63495,17 +63495,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-stream 2.0.1 - MIT -https://github.com/sindresorhus/is-stream#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-stream 2.0.1 - MIT +https://github.com/sindresorhus/is-stream#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -63515,16 +63515,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-typedarray 1.0.0 - MIT -https://github.com/hughsk/is-typedarray - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-typedarray 1.0.0 - MIT +https://github.com/hughsk/is-typedarray + + This software is released under the MIT license: Permission is hereby granted, free of charge, to any person obtaining a copy of @@ -63543,17 +63543,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-wsl 2.2.0 - MIT -https://github.com/sindresorhus/is-wsl#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-wsl 2.2.0 - MIT +https://github.com/sindresorhus/is-wsl#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -63563,17 +63563,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -is-yarn-global 0.4.1 - MIT -https://github.com/LitoMore/is-yarn-global#readme - -Copyright (c) 2018 LitoMore - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +is-yarn-global 0.4.1 - MIT +https://github.com/LitoMore/is-yarn-global#readme + +Copyright (c) 2018 LitoMore + MIT License Copyright (c) 2018 LitoMore @@ -63595,17 +63595,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -jest-util 29.7.0 - MIT -https://github.com/jestjs/jest#readme - -Copyright (c) Meta Platforms, Inc. and affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +jest-util 29.7.0 - MIT +https://github.com/jestjs/jest#readme + +Copyright (c) Meta Platforms, Inc. and affiliates + MIT License Copyright (c) Meta Platforms, Inc. and affiliates. @@ -63627,17 +63627,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -jest-worker 27.5.1 - MIT -https://github.com/facebook/jest#readme - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +jest-worker 27.5.1 - MIT +https://github.com/facebook/jest#readme + +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -63659,17 +63659,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -jest-worker 29.7.0 - MIT -https://github.com/jestjs/jest#readme - -Copyright (c) Meta Platforms, Inc. and affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +jest-worker 29.7.0 - MIT +https://github.com/jestjs/jest#readme + +Copyright (c) Meta Platforms, Inc. and affiliates + MIT License Copyright (c) Meta Platforms, Inc. and affiliates. @@ -63691,19 +63691,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -jiti 1.21.0 - MIT -https://github.com/unjs/jiti#readme - -Copyright (c) 2021 Ernest -Copyright (c) Pooya Parsa -Copyright (c) 2014-present, Facebook, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +jiti 1.21.0 - MIT +https://github.com/unjs/jiti#readme + +Copyright (c) 2021 Ernest +Copyright (c) Pooya Parsa +Copyright (c) 2014-present, Facebook, Inc. + MIT License Copyright (c) Pooya Parsa @@ -63725,17 +63725,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -jsesc 0.5.0 - MIT -http://mths.be/jsesc - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +jsesc 0.5.0 - MIT +http://mths.be/jsesc + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -63756,17 +63756,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -jsesc 2.5.2 - MIT -https://mths.be/jsesc - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +jsesc 2.5.2 - MIT +https://mths.be/jsesc + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -63787,19 +63787,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -json5 2.2.3 - MIT -http://json5.org/ - -(c) 2019 Denis Pushkarev -copyright (c) 2019 Denis Pushkarev -Copyright (c) 2012-2018 Aseem Kishore, and others - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +json5 2.2.3 - MIT +http://json5.org/ + +(c) 2019 Denis Pushkarev +copyright (c) 2019 Denis Pushkarev +Copyright (c) 2012-2018 Aseem Kishore, and others + MIT License Copyright (c) 2012-2018 Aseem Kishore, and [others]. @@ -63823,17 +63823,17 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. [others]: https://github.com/json5/json5/contributors - - ---------------------------------------------------------- - ---------------------------------------------------------- - -json-buffer 3.0.1 - MIT -https://github.com/dominictarr/json-buffer - -Copyright (c) 2013 Dominic Tarr - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +json-buffer 3.0.1 - MIT +https://github.com/dominictarr/json-buffer + +Copyright (c) 2013 Dominic Tarr + Copyright (c) 2013 Dominic Tarr Permission is hereby granted, free of charge, @@ -63856,18 +63856,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -jsonfile 6.1.0 - MIT -https://github.com/jprichardson/node-jsonfile#readme - -Copyright 2012-2016, JP Richardson -Copyright (c) 2012-2015, JP Richardson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +jsonfile 6.1.0 - MIT +https://github.com/jprichardson/node-jsonfile#readme + +Copyright 2012-2016, JP Richardson +Copyright (c) 2012-2015, JP Richardson + (The MIT License) Copyright (c) 2012-2015, JP Richardson @@ -63883,18 +63883,18 @@ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -json-parse-even-better-errors 2.3.1 - MIT -https://github.com/npm/json-parse-even-better-errors#readme - -Copyright npm, Inc. -Copyright 2017 Kat Marchan - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +json-parse-even-better-errors 2.3.1 - MIT +https://github.com/npm/json-parse-even-better-errors#readme + +Copyright npm, Inc. +Copyright 2017 Kat Marchan + Copyright 2017 Kat Marchán Copyright npm, Inc. @@ -63920,17 +63920,17 @@ DEALINGS IN THE SOFTWARE. This library is a fork of 'better-json-errors' by Kat Marchán, extended and distributed under the terms of the MIT license above. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -json-schema-traverse 1.0.0 - MIT -https://github.com/epoberezkin/json-schema-traverse#readme - -Copyright (c) 2017 Evgeny Poberezkin - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +json-schema-traverse 1.0.0 - MIT +https://github.com/epoberezkin/json-schema-traverse#readme + +Copyright (c) 2017 Evgeny Poberezkin + MIT License Copyright (c) 2017 Evgeny Poberezkin @@ -63952,18 +63952,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -js-tokens 4.0.0 - MIT -https://github.com/lydell/js-tokens#readme - -Copyright 2014, 2015, 2016, 2017, 2018 Simon Lydell -Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +js-tokens 4.0.0 - MIT +https://github.com/lydell/js-tokens#readme + +Copyright 2014, 2015, 2016, 2017, 2018 Simon Lydell +Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell + The MIT License (MIT) Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell @@ -63985,17 +63985,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -js-yaml 3.14.1 - MIT -https://github.com/nodeca/js-yaml - -Copyright (c) 2011-2015 by Vitaly Puzrin - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +js-yaml 3.14.1 - MIT +https://github.com/nodeca/js-yaml + +Copyright (c) 2011-2015 by Vitaly Puzrin + (The MIT License) Copyright (C) 2011-2015 by Vitaly Puzrin @@ -64017,17 +64017,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -js-yaml 4.1.0 - MIT -https://github.com/nodeca/js-yaml#readme - -Copyright (c) 2011-2015 by Vitaly Puzrin - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +js-yaml 4.1.0 - MIT +https://github.com/nodeca/js-yaml#readme + +Copyright (c) 2011-2015 by Vitaly Puzrin + (The MIT License) Copyright (C) 2011-2015 by Vitaly Puzrin @@ -64049,17 +64049,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -keyv 4.5.4 - MIT -https://github.com/jaredwray/keyv - -(c) Jared Wray - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +keyv 4.5.4 - MIT +https://github.com/jaredwray/keyv + +(c) Jared Wray + MIT License Copyright (c) @@ -64068,18 +64068,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -kind-of 6.0.3 - MIT -https://github.com/jonschlinkert/kind-of - -Copyright (c) 2014-2017, Jon Schlinkert -Copyright (c) 2020, Jon Schlinkert (https://github.com/jonschlinkert) - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +kind-of 6.0.3 - MIT +https://github.com/jonschlinkert/kind-of + +Copyright (c) 2014-2017, Jon Schlinkert +Copyright (c) 2020, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2014-2017, Jon Schlinkert. @@ -64101,18 +64101,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -kleur 3.0.3 - MIT -https://github.com/lukeed/kleur#readme - -(c) Luke Edwards (https://lukeed.com) -Copyright (c) Luke Edwards (lukeed.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +kleur 3.0.3 - MIT +https://github.com/lukeed/kleur#readme + +(c) Luke Edwards (https://lukeed.com) +Copyright (c) Luke Edwards (lukeed.com) + The MIT License (MIT) Copyright (c) Luke Edwards (lukeed.com) @@ -64134,17 +64134,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -latest-version 7.0.0 - MIT -https://github.com/sindresorhus/latest-version#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +latest-version 7.0.0 - MIT +https://github.com/sindresorhus/latest-version#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -64154,18 +64154,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -launch-editor 2.6.1 - MIT -https://github.com/yyx990803/launch-editor#readme - -Copyright (c) 2017-present, Yuxi -Copyright (c) 2015-present, Facebook, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +launch-editor 2.6.1 - MIT +https://github.com/yyx990803/launch-editor#readme + +Copyright (c) 2017-present, Yuxi +Copyright (c) 2015-present, Facebook, Inc. + The MIT License (MIT) Copyright (c) 2017-present, Yuxi (Evan) You @@ -64187,18 +64187,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -leven 3.1.0 - MIT -https://github.com/sindresorhus/leven#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +leven 3.1.0 - MIT +https://github.com/sindresorhus/leven#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -64208,17 +64208,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -lilconfig 2.1.0 - MIT -https://github.com/antonk52/lilconfig#readme - -Copyright (c) 2022 Anton Kastritskiy - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +lilconfig 2.1.0 - MIT +https://github.com/antonk52/lilconfig#readme + +Copyright (c) 2022 Anton Kastritskiy + MIT License Copyright (c) 2022 Anton Kastritskiy @@ -64240,17 +64240,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -lines-and-columns 1.2.4 - MIT -https://github.com/eventualbuddha/lines-and-columns#readme - -Copyright (c) 2015 Brian Donovan - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +lines-and-columns 1.2.4 - MIT +https://github.com/eventualbuddha/lines-and-columns#readme + +Copyright (c) 2015 Brian Donovan + The MIT License (MIT) Copyright (c) 2015 Brian Donovan @@ -64272,17 +64272,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -loader-runner 4.3.0 - MIT -https://github.com/webpack/loader-runner#readme - -Copyright (c) Tobias Koppers - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +loader-runner 4.3.0 - MIT +https://github.com/webpack/loader-runner#readme + +Copyright (c) Tobias Koppers + The MIT License Copyright (c) Tobias Koppers @sokra @@ -64304,17 +64304,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -loader-utils 2.0.4 - MIT -https://github.com/webpack/loader-utils#readme - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +loader-utils 2.0.4 - MIT +https://github.com/webpack/loader-utils#readme + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -64335,17 +64335,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -loader-utils 3.2.1 - MIT -https://github.com/webpack/loader-utils#readme - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +loader-utils 3.2.1 - MIT +https://github.com/webpack/loader-utils#readme + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -64366,17 +64366,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -locate-path 7.2.0 - MIT -https://github.com/sindresorhus/locate-path#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +locate-path 7.2.0 - MIT +https://github.com/sindresorhus/locate-path#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -64386,19 +64386,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -lodash 4.17.21 - MIT -https://lodash.com/ - -Copyright OpenJS Foundation and other contributors -Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors -copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +lodash 4.17.21 - MIT +https://lodash.com/ + +Copyright OpenJS Foundation and other contributors +Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors +copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + Copyright OpenJS Foundation and other contributors Based on Underscore.js, copyright Jeremy Ashkenas, @@ -64446,19 +64446,19 @@ Files located in the node_modules and vendor directories are externally maintained libraries used by this software which have their own licenses; we recommend you read them, as their terms may differ from the terms above. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -lodash.debounce 4.0.8 - MIT -https://lodash.com/ - -Copyright jQuery Foundation and other contributors -Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors -copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +lodash.debounce 4.0.8 - MIT +https://lodash.com/ + +Copyright jQuery Foundation and other contributors +Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors +copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + Copyright jQuery Foundation and other contributors Based on Underscore.js, copyright Jeremy Ashkenas, @@ -64506,19 +64506,19 @@ Files located in the node_modules and vendor directories are externally maintained libraries used by this software which have their own licenses; we recommend you read them, as their terms may differ from the terms above. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -lodash.memoize 4.1.2 - MIT -https://lodash.com/ - -Copyright jQuery Foundation and other contributors -Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors -copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +lodash.memoize 4.1.2 - MIT +https://lodash.com/ + +Copyright jQuery Foundation and other contributors +Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors +copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + Copyright jQuery Foundation and other contributors Based on Underscore.js, copyright Jeremy Ashkenas, @@ -64566,19 +64566,19 @@ Files located in the node_modules and vendor directories are externally maintained libraries used by this software which have their own licenses; we recommend you read them, as their terms may differ from the terms above. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -lodash.uniq 4.5.0 - MIT -https://lodash.com/ - -Copyright jQuery Foundation and other contributors -Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors -copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +lodash.uniq 4.5.0 - MIT +https://lodash.com/ + +Copyright jQuery Foundation and other contributors +Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors +copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + Copyright jQuery Foundation and other contributors Based on Underscore.js, copyright Jeremy Ashkenas, @@ -64626,18 +64626,18 @@ Files located in the node_modules and vendor directories are externally maintained libraries used by this software which have their own licenses; we recommend you read them, as their terms may differ from the terms above. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -longest-streak 3.1.0 - MIT -https://github.com/wooorm/longest-streak#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +longest-streak 3.1.0 - MIT +https://github.com/wooorm/longest-streak#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + (The MIT License) Copyright (c) 2015 Titus Wormer @@ -64660,17 +64660,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -loose-envify 1.4.0 - MIT -https://github.com/zertosh/loose-envify - -Copyright (c) 2015 Andres Suarez - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +loose-envify 1.4.0 - MIT +https://github.com/zertosh/loose-envify + +Copyright (c) 2015 Andres Suarez + The MIT License (MIT) Copyright (c) 2015 Andres Suarez @@ -64692,17 +64692,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -lower-case 2.0.2 - MIT -https://github.com/blakeembrey/change-case/tree/master/packages/lower-case#readme - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +lower-case 2.0.2 - MIT +https://github.com/blakeembrey/change-case/tree/master/packages/lower-case#readme + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + The MIT License (MIT) Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) @@ -64724,17 +64724,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -lowercase-keys 3.0.0 - MIT -https://github.com/sindresorhus/lowercase-keys#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +lowercase-keys 3.0.0 - MIT +https://github.com/sindresorhus/lowercase-keys#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -64744,17 +64744,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -markdown-extensions 2.0.0 - MIT -https://github.com/sindresorhus/markdown-extensions#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +markdown-extensions 2.0.0 - MIT +https://github.com/sindresorhus/markdown-extensions#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -64764,18 +64764,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -markdown-table 3.0.3 - MIT -https://github.com/wooorm/markdown-table#readme - -(c) Titus Wormer -Copyright (c) 2014 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +markdown-table 3.0.3 - MIT +https://github.com/wooorm/markdown-table#readme + +(c) Titus Wormer +Copyright (c) 2014 Titus Wormer + (The MIT License) Copyright (c) 2014 Titus Wormer @@ -64798,18 +64798,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-directive 3.0.0 - MIT -https://github.com/syntax-tree/mdast-util-directive#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-directive 3.0.0 - MIT +https://github.com/syntax-tree/mdast-util-directive#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -64832,18 +64832,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-find-and-replace 3.0.1 - MIT -https://github.com/syntax-tree/mdast-util-find-and-replace#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-find-and-replace 3.0.1 - MIT +https://github.com/syntax-tree/mdast-util-find-and-replace#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -64866,18 +64866,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-from-markdown 2.0.0 - MIT -https://github.com/syntax-tree/mdast-util-from-markdown#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-from-markdown 2.0.0 - MIT +https://github.com/syntax-tree/mdast-util-from-markdown#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -64900,18 +64900,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-frontmatter 2.0.1 - MIT -https://github.com/syntax-tree/mdast-util-frontmatter#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-frontmatter 2.0.1 - MIT +https://github.com/syntax-tree/mdast-util-frontmatter#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -64934,18 +64934,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-gfm 3.0.0 - MIT -https://github.com/syntax-tree/mdast-util-gfm#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-gfm 3.0.0 - MIT +https://github.com/syntax-tree/mdast-util-gfm#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -64968,18 +64968,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-gfm-autolink-literal 2.0.0 - MIT -https://github.com/syntax-tree/mdast-util-gfm-autolink-literal#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-gfm-autolink-literal 2.0.0 - MIT +https://github.com/syntax-tree/mdast-util-gfm-autolink-literal#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65002,18 +65002,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-gfm-footnote 2.0.0 - MIT -https://github.com/syntax-tree/mdast-util-gfm-footnote#readme - -(c) Titus Wormer -Copyright (c) 2021 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-gfm-footnote 2.0.0 - MIT +https://github.com/syntax-tree/mdast-util-gfm-footnote#readme + +(c) Titus Wormer +Copyright (c) 2021 Titus Wormer + (The MIT License) Copyright (c) 2021 Titus Wormer @@ -65036,16 +65036,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-gfm-strikethrough 2.0.0 - MIT -https://github.com/syntax-tree/mdast-util-gfm-strikethrough#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-gfm-strikethrough 2.0.0 - MIT +https://github.com/syntax-tree/mdast-util-gfm-strikethrough#readme + + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65068,18 +65068,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-gfm-table 2.0.0 - MIT -https://github.com/syntax-tree/mdast-util-gfm-table#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-gfm-table 2.0.0 - MIT +https://github.com/syntax-tree/mdast-util-gfm-table#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65102,18 +65102,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-gfm-task-list-item 2.0.0 - MIT -https://github.com/syntax-tree/mdast-util-gfm-task-list-item#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-gfm-task-list-item 2.0.0 - MIT +https://github.com/syntax-tree/mdast-util-gfm-task-list-item#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65136,18 +65136,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-mdx 3.0.0 - MIT -https://github.com/syntax-tree/mdast-util-mdx#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-mdx 3.0.0 - MIT +https://github.com/syntax-tree/mdast-util-mdx#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65170,18 +65170,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-mdx-expression 2.0.0 - MIT -https://github.com/syntax-tree/mdast-util-mdx-expression#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-mdx-expression 2.0.0 - MIT +https://github.com/syntax-tree/mdast-util-mdx-expression#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65204,18 +65204,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-mdxjs-esm 2.0.1 - MIT -https://github.com/syntax-tree/mdast-util-mdxjs-esm#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-mdxjs-esm 2.0.1 - MIT +https://github.com/syntax-tree/mdast-util-mdxjs-esm#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65238,18 +65238,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-mdx-jsx 3.0.0 - MIT -https://github.com/syntax-tree/mdast-util-mdx-jsx#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-mdx-jsx 3.0.0 - MIT +https://github.com/syntax-tree/mdast-util-mdx-jsx#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65272,19 +65272,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-phrasing 4.0.0 - MIT -https://github.com/syntax-tree/mdast-util-phrasing#readme - -(c) Victor Felder -Copyright (c) 2017 Victor Felder -Copyright (c) 2017 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-phrasing 4.0.0 - MIT +https://github.com/syntax-tree/mdast-util-phrasing#readme + +(c) Victor Felder +Copyright (c) 2017 Victor Felder +Copyright (c) 2017 Titus Wormer + (The MIT License) Copyright (c) 2017 Titus Wormer @@ -65308,18 +65308,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-to-hast 13.0.2 - MIT -https://github.com/syntax-tree/mdast-util-to-hast#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-to-hast 13.0.2 - MIT +https://github.com/syntax-tree/mdast-util-to-hast#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -65342,18 +65342,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-to-markdown 2.1.0 - MIT -https://github.com/syntax-tree/mdast-util-to-markdown#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-to-markdown 2.1.0 - MIT +https://github.com/syntax-tree/mdast-util-to-markdown#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65376,18 +65376,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mdast-util-to-string 4.0.0 - MIT -https://github.com/syntax-tree/mdast-util-to-string#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mdast-util-to-string 4.0.0 - MIT +https://github.com/syntax-tree/mdast-util-to-string#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + (The MIT License) Copyright (c) 2015 Titus Wormer @@ -65410,17 +65410,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -media-typer 0.3.0 - MIT -https://github.com/jshttp/media-typer - -Copyright (c) 2014 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +media-typer 0.3.0 - MIT +https://github.com/jshttp/media-typer + +Copyright (c) 2014 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2014 Douglas Christopher Wilson @@ -65443,17 +65443,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -merge2 1.4.1 - MIT -https://github.com/teambition/merge2 - -Copyright (c) 2014-2020 Teambition - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +merge2 1.4.1 - MIT +https://github.com/teambition/merge2 + +Copyright (c) 2014-2020 Teambition + The MIT License (MIT) Copyright (c) 2014-2020 Teambition @@ -65475,20 +65475,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -merge-descriptors 1.0.1 - MIT -https://github.com/component/merge-descriptors - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2015 Douglas Christopher Wilson -Copyright (c) 2013 Jonathan Ong -Copyright (c) 2015 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +merge-descriptors 1.0.1 - MIT +https://github.com/component/merge-descriptors + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson +Copyright (c) 2013 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2013 Jonathan Ong @@ -65512,17 +65512,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -merge-stream 2.0.0 - MIT -https://github.com/grncdr/merge-stream#readme - -Copyright (c) Stephen Sugden (stephensugden.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +merge-stream 2.0.0 - MIT +https://github.com/grncdr/merge-stream#readme + +Copyright (c) Stephen Sugden (stephensugden.com) + The MIT License (MIT) Copyright (c) Stephen Sugden (stephensugden.com) @@ -65544,20 +65544,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -methods 1.1.2 - MIT -https://github.com/jshttp/methods - -Copyright (c) 2013-2014 TJ Holowaychuk -Copyright (c) 2015-2016 Douglas Christopher Wilson -Copyright (c) 2013-2014 TJ Holowaychuk -Copyright (c) 2015-2016 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +methods 1.1.2 - MIT +https://github.com/jshttp/methods + +Copyright (c) 2013-2014 TJ Holowaychuk +Copyright (c) 2015-2016 Douglas Christopher Wilson +Copyright (c) 2013-2014 TJ Holowaychuk +Copyright (c) 2015-2016 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2013-2014 TJ Holowaychuk @@ -65582,17 +65582,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark 4.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark 4.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -65601,16 +65601,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-core-commonmark 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-core-commonmark 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + + MIT License Copyright (c) @@ -65619,16 +65619,16 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-directive 3.0.0 - MIT -https://github.com/micromark/micromark-extension-directive#readme - - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-directive 3.0.0 - MIT +https://github.com/micromark/micromark-extension-directive#readme + + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65651,18 +65651,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-frontmatter 2.0.0 - MIT -https://github.com/micromark/micromark-extension-frontmatter#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-frontmatter 2.0.0 - MIT +https://github.com/micromark/micromark-extension-frontmatter#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65685,16 +65685,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-gfm 3.0.0 - MIT -https://github.com/micromark/micromark-extension-gfm#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-gfm 3.0.0 - MIT +https://github.com/micromark/micromark-extension-gfm#readme + + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65717,18 +65717,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-gfm-autolink-literal 2.0.0 - MIT -https://github.com/micromark/micromark-extension-gfm-autolink-literal#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-gfm-autolink-literal 2.0.0 - MIT +https://github.com/micromark/micromark-extension-gfm-autolink-literal#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65751,18 +65751,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-gfm-footnote 2.0.0 - MIT -https://github.com/micromark/micromark-extension-gfm-footnote#readme - -(c) Titus Wormer -Copyright (c) 2021 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-gfm-footnote 2.0.0 - MIT +https://github.com/micromark/micromark-extension-gfm-footnote#readme + +(c) Titus Wormer +Copyright (c) 2021 Titus Wormer + (The MIT License) Copyright (c) 2021 Titus Wormer @@ -65785,18 +65785,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-gfm-strikethrough 2.0.0 - MIT -https://github.com/micromark/micromark-extension-gfm-strikethrough#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-gfm-strikethrough 2.0.0 - MIT +https://github.com/micromark/micromark-extension-gfm-strikethrough#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65819,18 +65819,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-gfm-table 2.0.0 - MIT -https://github.com/micromark/micromark-extension-gfm-table#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-gfm-table 2.0.0 - MIT +https://github.com/micromark/micromark-extension-gfm-table#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65853,18 +65853,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-gfm-tagfilter 2.0.0 - MIT -https://github.com/micromark/micromark-extension-gfm-tagfilter#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-gfm-tagfilter 2.0.0 - MIT +https://github.com/micromark/micromark-extension-gfm-tagfilter#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65887,18 +65887,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-gfm-task-list-item 2.0.1 - MIT -https://github.com/micromark/micromark-extension-gfm-task-list-item#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-gfm-task-list-item 2.0.1 - MIT +https://github.com/micromark/micromark-extension-gfm-task-list-item#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65921,17 +65921,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-mdx-expression 3.0.0 - MIT -https://github.com/micromark/micromark-extension-mdx-expression/tree/main#readme - -(c) Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-mdx-expression 3.0.0 - MIT +https://github.com/micromark/micromark-extension-mdx-expression/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -65940,18 +65940,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-mdxjs 3.0.0 - MIT -https://github.com/micromark/micromark-extension-mdxjs#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-mdxjs 3.0.0 - MIT +https://github.com/micromark/micromark-extension-mdxjs#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -65974,18 +65974,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-mdxjs-esm 3.0.0 - MIT -https://github.com/micromark/micromark-extension-mdxjs-esm#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-mdxjs-esm 3.0.0 - MIT +https://github.com/micromark/micromark-extension-mdxjs-esm#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -66008,18 +66008,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-mdx-jsx 3.0.0 - MIT -https://github.com/micromark/micromark-extension-mdx-jsx#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-mdx-jsx 3.0.0 - MIT +https://github.com/micromark/micromark-extension-mdx-jsx#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -66042,16 +66042,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-extension-mdx-md 2.0.0 - MIT -https://github.com/micromark/micromark-extension-mdx-md#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-extension-mdx-md 2.0.0 - MIT +https://github.com/micromark/micromark-extension-mdx-md#readme + + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -66074,17 +66074,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-factory-destination 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-factory-destination 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66093,17 +66093,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-factory-label 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-factory-label 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66112,17 +66112,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-factory-mdx-expression 2.0.1 - MIT -https://github.com/micromark/micromark-extension-mdx-expression/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-factory-mdx-expression 2.0.1 - MIT +https://github.com/micromark/micromark-extension-mdx-expression/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66131,17 +66131,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-factory-space 1.1.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-factory-space 1.1.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66150,17 +66150,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-factory-space 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-factory-space 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66169,18 +66169,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-factory-title 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer -(c) . param TokenType - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-factory-title 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer +(c) . param TokenType + MIT License Copyright (c) @@ -66189,17 +66189,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-factory-whitespace 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-factory-whitespace 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66208,17 +66208,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-character 1.2.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-character 1.2.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66227,17 +66227,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-character 2.0.1 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-character 2.0.1 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66246,17 +66246,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-chunked 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-chunked 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66265,17 +66265,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-classify-character 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-classify-character 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66284,17 +66284,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-combine-extensions 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-combine-extensions 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66303,17 +66303,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-decode-numeric-character-reference 2.0.1 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-decode-numeric-character-reference 2.0.1 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66322,17 +66322,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-decode-string 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-decode-string 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66341,17 +66341,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-encode 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-encode 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66360,17 +66360,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-events-to-acorn 2.0.2 - MIT -https://github.com/micromark/micromark-extension-mdx-expression/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-events-to-acorn 2.0.2 - MIT +https://github.com/micromark/micromark-extension-mdx-expression/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66379,17 +66379,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-html-tag-name 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-html-tag-name 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66398,17 +66398,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-normalize-identifier 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-normalize-identifier 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66417,17 +66417,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-resolve-all 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-resolve-all 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66436,17 +66436,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-sanitize-uri 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-sanitize-uri 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66455,17 +66455,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-subtokenize 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-subtokenize 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66474,17 +66474,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-symbol 1.1.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-symbol 1.1.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66493,17 +66493,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-symbol 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-symbol 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66512,17 +66512,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-types 1.1.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-types 1.1.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66531,17 +66531,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromark-util-types 2.0.0 - MIT -https://github.com/micromark/micromark/tree/main#readme - -(c) Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromark-util-types 2.0.0 - MIT +https://github.com/micromark/micromark/tree/main#readme + +(c) Titus Wormer + MIT License Copyright (c) @@ -66550,18 +66550,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -micromatch 4.0.5 - MIT -https://github.com/micromatch/micromatch - -Copyright (c) 2014-present, Jon Schlinkert -Copyright (c) 2022, Jon Schlinkert (https://github.com/jonschlinkert) - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +micromatch 4.0.5 - MIT +https://github.com/micromatch/micromatch + +Copyright (c) 2014-present, Jon Schlinkert +Copyright (c) 2022, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2014-present, Jon Schlinkert. @@ -66583,17 +66583,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mime 1.6.0 - MIT -https://github.com/broofa/node-mime#readme - -Copyright (c) 2010 Benjamin Thomas, Robert Kieffer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mime 1.6.0 - MIT +https://github.com/broofa/node-mime#readme + +Copyright (c) 2010 Benjamin Thomas, Robert Kieffer + The MIT License (MIT) Copyright (c) 2010 Benjamin Thomas, Robert Kieffer @@ -66615,18 +66615,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mime-db 1.33.0 - MIT -https://github.com/jshttp/mime-db#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014 Jonathan Ong me@jongleberry.com - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mime-db 1.33.0 - MIT +https://github.com/jshttp/mime-db#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014 Jonathan Ong me@jongleberry.com + The MIT License (MIT) @@ -66649,20 +66649,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mime-db 1.52.0 - MIT -https://github.com/jshttp/mime-db#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2015-2022 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2015-2022 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mime-db 1.52.0 - MIT +https://github.com/jshttp/mime-db#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015-2022 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015-2022 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2014 Jonathan Ong @@ -66686,20 +66686,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mime-types 2.1.18 - MIT -https://github.com/jshttp/mime-types#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2015 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2015 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mime-types 2.1.18 - MIT +https://github.com/jshttp/mime-types#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2014 Jonathan Ong @@ -66723,20 +66723,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mime-types 2.1.35 - MIT -https://github.com/jshttp/mime-types#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2015 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2015 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mime-types 2.1.35 - MIT +https://github.com/jshttp/mime-types#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2014 Jonathan Ong @@ -66760,18 +66760,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mimic-fn 2.1.0 - MIT -https://github.com/sindresorhus/mimic-fn#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mimic-fn 2.1.0 - MIT +https://github.com/sindresorhus/mimic-fn#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -66781,17 +66781,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mimic-response 3.1.0 - MIT -https://github.com/sindresorhus/mimic-response#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mimic-response 3.1.0 - MIT +https://github.com/sindresorhus/mimic-response#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -66801,17 +66801,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mimic-response 4.0.0 - MIT -https://github.com/sindresorhus/mimic-response#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mimic-response 4.0.0 - MIT +https://github.com/sindresorhus/mimic-response#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -66821,17 +66821,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mini-css-extract-plugin 2.7.6 - MIT -https://github.com/webpack-contrib/mini-css-extract-plugin - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mini-css-extract-plugin 2.7.6 - MIT +https://github.com/webpack-contrib/mini-css-extract-plugin + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -66852,16 +66852,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -minimist 1.2.8 - MIT -https://github.com/minimistjs/minimist - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +minimist 1.2.8 - MIT +https://github.com/minimistjs/minimist + + This software is released under the MIT license: Permission is hereby granted, free of charge, to any person obtaining a copy of @@ -66880,18 +66880,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -mrmime 2.0.0 - MIT -https://github.com/lukeed/mrmime#readme - -(c) Luke Edwards (https://lukeed.com) -Copyright (c) Luke Edwards (https://lukeed.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +mrmime 2.0.0 - MIT +https://github.com/lukeed/mrmime#readme + +(c) Luke Edwards (https://lukeed.com) +Copyright (c) Luke Edwards (https://lukeed.com) + The MIT License (MIT) Copyright (c) Luke Edwards (https://lukeed.com) @@ -66913,17 +66913,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ms 2.1.2 - MIT -https://github.com/zeit/ms#readme - -Copyright (c) 2016 Zeit, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ms 2.1.2 - MIT +https://github.com/zeit/ms#readme + +Copyright (c) 2016 Zeit, Inc. + The MIT License (MIT) Copyright (c) 2016 Zeit, Inc. @@ -66945,17 +66945,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ms 2.1.3 - MIT -https://github.com/vercel/ms#readme - -Copyright (c) 2020 Vercel, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ms 2.1.3 - MIT +https://github.com/vercel/ms#readme + +Copyright (c) 2020 Vercel, Inc. + The MIT License (MIT) Copyright (c) 2020 Vercel, Inc. @@ -66977,17 +66977,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -multicast-dns 7.2.5 - MIT -https://github.com/mafintosh/multicast-dns - -Copyright (c) 2015 Mathias Buus - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +multicast-dns 7.2.5 - MIT +https://github.com/mafintosh/multicast-dns + +Copyright (c) 2015 Mathias Buus + The MIT License (MIT) Copyright (c) 2015 Mathias Buus @@ -67009,17 +67009,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -nanoid 3.3.7 - MIT -https://github.com/ai/nanoid#readme - -Copyright 2017 Andrey Sitnik - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +nanoid 3.3.7 - MIT +https://github.com/ai/nanoid#readme + +Copyright 2017 Andrey Sitnik + The MIT License (MIT) Copyright 2017 Andrey Sitnik @@ -67040,23 +67040,23 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -negotiator 0.6.3 - MIT -https://github.com/jshttp/negotiator#readme - -Copyright (c) 2012 Federico Romero -Copyright (c) 2014 Federico Romero -Copyright (c) 2012 Isaac Z. Schlueter -Copyright (c) 2012-2014 Federico Romero -Copyright (c) 2012-2014 Isaac Z. Schlueter -Copyright (c) 2015 Douglas Christopher Wilson -Copyright (c) 2014-2015 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +negotiator 0.6.3 - MIT +https://github.com/jshttp/negotiator#readme + +Copyright (c) 2012 Federico Romero +Copyright (c) 2014 Federico Romero +Copyright (c) 2012 Isaac Z. Schlueter +Copyright (c) 2012-2014 Federico Romero +Copyright (c) 2012-2014 Isaac Z. Schlueter +Copyright (c) 2015 Douglas Christopher Wilson +Copyright (c) 2014-2015 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2012-2014 Federico Romero @@ -67081,18 +67081,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -neo-async 2.6.2 - MIT -https://github.com/suguru03/neo-async - -Copyright Caolan McMahon -Copyright (c) 2014-2018 Suguru Motegi - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +neo-async 2.6.2 - MIT +https://github.com/suguru03/neo-async + +Copyright Caolan McMahon +Copyright (c) 2014-2018 Suguru Motegi + MIT License Copyright (c) 2014-2018 Suguru Motegi @@ -67115,17 +67115,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -no-case 3.0.4 - MIT -https://github.com/blakeembrey/change-case/tree/master/packages/no-case#readme - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +no-case 3.0.4 - MIT +https://github.com/blakeembrey/change-case/tree/master/packages/no-case#readme + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + The MIT License (MIT) Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) @@ -67147,17 +67147,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -node-emoji 2.1.3 - MIT -https://github.com/omnidan/node-emoji#readme - -Copyright (c) 2014-2023 Daniel Bugl - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +node-emoji 2.1.3 - MIT +https://github.com/omnidan/node-emoji#readme + +Copyright (c) 2014-2023 Daniel Bugl + # MIT License Copyright (c) 2014-2023 Daniel Bugl @@ -67180,17 +67180,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -node-releases 2.0.14 - MIT -https://github.com/chicoxyzzy/node-releases#readme - -Copyright (c) 2017 Sergey Rubanov (https://github.com/chicoxyzzy) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +node-releases 2.0.14 - MIT +https://github.com/chicoxyzzy/node-releases#readme + +Copyright (c) 2017 Sergey Rubanov (https://github.com/chicoxyzzy) + The MIT License Copyright (c) 2017 Sergey Rubanov (https://github.com/chicoxyzzy) @@ -67212,18 +67212,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -normalize-path 3.0.0 - MIT -https://github.com/jonschlinkert/normalize-path - -Copyright (c) 2014-2018, Jon Schlinkert -Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +normalize-path 3.0.0 - MIT +https://github.com/jonschlinkert/normalize-path + +Copyright (c) 2014-2018, Jon Schlinkert +Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2014-2018, Jon Schlinkert. @@ -67245,18 +67245,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -normalize-range 0.1.2 - MIT -https://github.com/jamestalmage/normalize-range#readme - -Copyright (c) James Talmage -(c) James Talmage (http://github.com/jamestalmage) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +normalize-range 0.1.2 - MIT +https://github.com/jamestalmage/normalize-range#readme + +Copyright (c) James Talmage +(c) James Talmage (http://github.com/jamestalmage) + The MIT License (MIT) Copyright (c) James Talmage (github.com/jamestalmage) @@ -67278,17 +67278,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -normalize-url 6.1.0 - MIT -https://github.com/sindresorhus/normalize-url#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +normalize-url 6.1.0 - MIT +https://github.com/sindresorhus/normalize-url#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -67298,17 +67298,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -normalize-url 8.0.0 - MIT -https://github.com/sindresorhus/normalize-url#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +normalize-url 8.0.0 - MIT +https://github.com/sindresorhus/normalize-url#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -67318,17 +67318,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -npm-run-path 4.0.1 - MIT -https://github.com/sindresorhus/npm-run-path#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +npm-run-path 4.0.1 - MIT +https://github.com/sindresorhus/npm-run-path#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -67338,19 +67338,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -nprogress 0.2.0 - MIT -https://github.com/rstacruz/nprogress - -(c) 2013-2014, Rico Sta. Cruz -Copyright (c) 2013-2014 Rico Sta. Cruz -(c) 2013, 2014 Rico Sta. Cruz - http://ricostacruz.com/nprogress - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +nprogress 0.2.0 - MIT +https://github.com/rstacruz/nprogress + +(c) 2013-2014, Rico Sta. Cruz +Copyright (c) 2013-2014 Rico Sta. Cruz +(c) 2013, 2014 Rico Sta. Cruz - http://ricostacruz.com/nprogress + Copyright (c) 2013-2014 Rico Sta. Cruz Permission is hereby granted, free of charge, to any person obtaining a copy @@ -67370,17 +67370,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -object.assign 4.1.5 - MIT -https://github.com/ljharb/object.assign#readme - -Copyright (c) 2014 Jordan Harband - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +object.assign 4.1.5 - MIT +https://github.com/ljharb/object.assign#readme + +Copyright (c) 2014 Jordan Harband + The MIT License (MIT) Copyright (c) 2014 Jordan Harband @@ -67401,19 +67401,19 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -object-assign 4.1.1 - MIT -https://github.com/sindresorhus/object-assign#readme - -(c) Sindre Sorhus -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - +SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +object-assign 4.1.1 - MIT +https://github.com/sindresorhus/object-assign#readme + +(c) Sindre Sorhus +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + The MIT License (MIT) Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -67435,17 +67435,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -object-inspect 1.13.1 - MIT -https://github.com/inspect-js/object-inspect - -Copyright (c) 2013 James Halliday - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +object-inspect 1.13.1 - MIT +https://github.com/inspect-js/object-inspect + +Copyright (c) 2013 James Halliday + MIT License Copyright (c) 2013 James Halliday @@ -67467,17 +67467,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -object-keys 1.1.1 - MIT -https://github.com/ljharb/object-keys#readme - -Copyright (c) 2013 Jordan Harband - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +object-keys 1.1.1 - MIT +https://github.com/ljharb/object-keys#readme + +Copyright (c) 2013 Jordan Harband + The MIT License (MIT) Copyright (C) 2013 Jordan Harband @@ -67498,17 +67498,17 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -obuf 1.1.2 - MIT -https://github.com/indutny/offset-buffer - -Copyright Fedor Indutny, 2015 - +THE SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +obuf 1.1.2 - MIT +https://github.com/indutny/offset-buffer + +Copyright Fedor Indutny, 2015 + Copyright Fedor Indutny, 2015. Permission is hereby granted, free of charge, to any person obtaining a @@ -67528,17 +67528,17 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -onetime 5.1.2 - MIT -https://github.com/sindresorhus/onetime#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - +USE OR OTHER DEALINGS IN THE SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +onetime 5.1.2 - MIT +https://github.com/sindresorhus/onetime#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -67548,20 +67548,20 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -on-finished 2.4.1 - MIT -https://github.com/jshttp/on-finished#readme - -Copyright (c) 2013 Jonathan Ong -Copyright (c) 2014 Douglas Christopher Wilson -Copyright (c) 2013 Jonathan Ong -Copyright (c) 2014 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +on-finished 2.4.1 - MIT +https://github.com/jshttp/on-finished#readme + +Copyright (c) 2013 Jonathan Ong +Copyright (c) 2014 Douglas Christopher Wilson +Copyright (c) 2013 Jonathan Ong +Copyright (c) 2014 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2013 Jonathan Ong @@ -67585,17 +67585,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -on-headers 1.0.2 - MIT -https://github.com/jshttp/on-headers#readme - -Copyright (c) 2014 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +on-headers 1.0.2 - MIT +https://github.com/jshttp/on-headers#readme + +Copyright (c) 2014 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2014 Douglas Christopher Wilson @@ -67618,21 +67618,21 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -open 8.4.2 - MIT -https://github.com/sindresorhus/open#readme - -Copyright 2006, Kevin Krammer -Copyright 2006, Jeremy White -Copyright 2009-2010, Fathi Boudra -Copyright 2009-2010, Rex Dieter -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +open 8.4.2 - MIT +https://github.com/sindresorhus/open#readme + +Copyright 2006, Kevin Krammer +Copyright 2006, Jeremy White +Copyright 2009-2010, Fathi Boudra +Copyright 2009-2010, Rex Dieter +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -67642,17 +67642,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -package-json 8.1.1 - MIT -https://github.com/sindresorhus/package-json#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +package-json 8.1.1 - MIT +https://github.com/sindresorhus/package-json#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -67662,17 +67662,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -param-case 3.0.4 - MIT -https://github.com/blakeembrey/change-case/tree/master/packages/param-case#readme - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +param-case 3.0.4 - MIT +https://github.com/blakeembrey/change-case/tree/master/packages/param-case#readme + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + The MIT License (MIT) Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) @@ -67694,18 +67694,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -parent-module 1.0.1 - MIT -https://github.com/sindresorhus/parent-module#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +parent-module 1.0.1 - MIT +https://github.com/sindresorhus/parent-module#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -67715,17 +67715,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -parse5 7.1.2 - MIT -https://github.com/inikulin/parse5 - -Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +parse5 7.1.2 - MIT +https://github.com/inikulin/parse5 + +Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin) + Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin) Permission is hereby granted, free of charge, to any person obtaining a copy @@ -67745,17 +67745,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -parse5-htmlparser2-tree-adapter 7.0.0 - MIT -https://github.com/inikulin/parse5 - -Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +parse5-htmlparser2-tree-adapter 7.0.0 - MIT +https://github.com/inikulin/parse5 + +Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin) + Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin) Permission is hereby granted, free of charge, to any person obtaining a copy @@ -67775,18 +67775,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -parse-entities 4.0.1 - MIT -https://github.com/wooorm/parse-entities#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +parse-entities 4.0.1 - MIT +https://github.com/wooorm/parse-entities#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + (The MIT License) Copyright (c) 2015 Titus Wormer @@ -67809,17 +67809,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -parse-json 5.2.0 - MIT -https://github.com/sindresorhus/parse-json#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +parse-json 5.2.0 - MIT +https://github.com/sindresorhus/parse-json#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -67829,20 +67829,20 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -parseurl 1.3.3 - MIT -https://github.com/pillarjs/parseurl#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014-2017 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014-2017 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +parseurl 1.3.3 - MIT +https://github.com/pillarjs/parseurl#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2017 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2017 Douglas Christopher Wilson + (The MIT License) @@ -67867,17 +67867,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -pascal-case 3.1.2 - MIT -https://github.com/blakeembrey/change-case/tree/master/packages/pascal-case#readme - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +pascal-case 3.1.2 - MIT +https://github.com/blakeembrey/change-case/tree/master/packages/pascal-case#readme + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + The MIT License (MIT) Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) @@ -67899,17 +67899,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -path-exists 5.0.0 - MIT -https://github.com/sindresorhus/path-exists#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +path-exists 5.0.0 - MIT +https://github.com/sindresorhus/path-exists#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -67919,18 +67919,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -path-is-absolute 1.0.1 - MIT -https://github.com/sindresorhus/path-is-absolute#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +path-is-absolute 1.0.1 - MIT +https://github.com/sindresorhus/path-is-absolute#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + The MIT License (MIT) Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -67952,17 +67952,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -path-key 3.1.1 - MIT -https://github.com/sindresorhus/path-key#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +path-key 3.1.1 - MIT +https://github.com/sindresorhus/path-key#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -67972,18 +67972,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -path-parse 1.0.7 - MIT -https://github.com/jbgutierrez/path-parse#readme - -Copyright (c) 2015 Javier Blanco -(c) Javier Blanco (http://jbgutierrez.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +path-parse 1.0.7 - MIT +https://github.com/jbgutierrez/path-parse#readme + +Copyright (c) 2015 Javier Blanco +(c) Javier Blanco (http://jbgutierrez.info) + The MIT License (MIT) Copyright (c) 2015 Javier Blanco @@ -68005,17 +68005,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -path-to-regexp 0.1.7 - MIT -https://github.com/component/path-to-regexp#readme - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +path-to-regexp 0.1.7 - MIT +https://github.com/component/path-to-regexp#readme + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + The MIT License (MIT) Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) @@ -68037,17 +68037,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -path-to-regexp 1.8.0 - MIT -https://github.com/pillarjs/path-to-regexp#readme - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +path-to-regexp 1.8.0 - MIT +https://github.com/pillarjs/path-to-regexp#readme + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + The MIT License (MIT) Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) @@ -68069,17 +68069,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -path-to-regexp 2.2.1 - MIT -https://github.com/pillarjs/path-to-regexp#readme - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +path-to-regexp 2.2.1 - MIT +https://github.com/pillarjs/path-to-regexp#readme + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + The MIT License (MIT) Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) @@ -68101,18 +68101,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -path-type 4.0.0 - MIT -https://github.com/sindresorhus/path-type#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +path-type 4.0.0 - MIT +https://github.com/sindresorhus/path-type#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -68122,17 +68122,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -p-cancelable 4.0.1 - MIT -https://github.com/sindresorhus/p-cancelable#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +p-cancelable 4.0.1 - MIT +https://github.com/sindresorhus/p-cancelable#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -68142,17 +68142,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -periscopic 3.1.0 - MIT -https://github.com/Rich-Harris/periscopic#readme - -Copyright (c) 2019 Rich Harris - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +periscopic 3.1.0 - MIT +https://github.com/Rich-Harris/periscopic#readme + +Copyright (c) 2019 Rich Harris + Copyright (c) 2019 Rich Harris 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: @@ -68160,18 +68160,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -picomatch 2.3.1 - MIT -https://github.com/micromatch/picomatch - -Copyright (c) 2017-present, Jon Schlinkert -Copyright (c) 2017-present, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +picomatch 2.3.1 - MIT +https://github.com/micromatch/picomatch + +Copyright (c) 2017-present, Jon Schlinkert +Copyright (c) 2017-present, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2017-present, Jon Schlinkert. @@ -68193,17 +68193,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -pkg-dir 7.0.0 - MIT -https://github.com/sindresorhus/pkg-dir#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +pkg-dir 7.0.0 - MIT +https://github.com/sindresorhus/pkg-dir#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -68213,18 +68213,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -pkg-up 3.1.0 - MIT -https://github.com/sindresorhus/pkg-up#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +pkg-up 3.1.0 - MIT +https://github.com/sindresorhus/pkg-up#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -68234,17 +68234,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -p-limit 4.0.0 - MIT -https://github.com/sindresorhus/p-limit#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +p-limit 4.0.0 - MIT +https://github.com/sindresorhus/p-limit#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -68254,17 +68254,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -p-locate 6.0.0 - MIT -https://github.com/sindresorhus/p-locate#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +p-locate 6.0.0 - MIT +https://github.com/sindresorhus/p-locate#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -68274,17 +68274,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -p-map 4.0.0 - MIT -https://github.com/sindresorhus/p-map#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +p-map 4.0.0 - MIT +https://github.com/sindresorhus/p-map#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -68294,17 +68294,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss 8.4.32 - MIT -https://postcss.org/ - -Copyright 2013 Andrey Sitnik - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss 8.4.32 - MIT +https://postcss.org/ + +Copyright 2013 Andrey Sitnik + The MIT License (MIT) Copyright 2013 Andrey Sitnik @@ -68325,17 +68325,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-calc 8.2.4 - MIT - - -Copyright (c) 2014 Maxime Thirouin - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-calc 8.2.4 - MIT + + +Copyright (c) 2014 Maxime Thirouin + The MIT License (MIT) Copyright (c) 2014 Maxime Thirouin @@ -68356,18 +68356,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-colormin 5.3.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-colormin 5.3.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68390,18 +68390,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-convert-values 5.1.3 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-convert-values 5.1.3 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68424,18 +68424,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-discard-comments 5.1.2 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-discard-comments 5.1.2 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68458,19 +68458,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-discard-duplicates 5.1.0 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-discard-duplicates 5.1.0 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68493,19 +68493,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-discard-empty 5.1.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-discard-empty 5.1.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68528,17 +68528,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-discard-overridden 5.1.0 - MIT -https://github.com/cssnano/cssnano - -Copyright 2016 Justineo - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-discard-overridden 5.1.0 - MIT +https://github.com/cssnano/cssnano + +Copyright 2016 Justineo + The MIT License (MIT) Copyright 2016 Justineo @@ -68559,19 +68559,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-discard-unused 5.1.0 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-discard-unused 5.1.0 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68594,17 +68594,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-loader 7.3.3 - MIT -https://github.com/webpack-contrib/postcss-loader - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-loader 7.3.3 - MIT +https://github.com/webpack-contrib/postcss-loader + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -68624,19 +68624,19 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-merge-idents 5.1.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-merge-idents 5.1.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68659,18 +68659,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-merge-longhand 5.1.7 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-merge-longhand 5.1.7 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68693,18 +68693,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-merge-rules 5.1.4 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-merge-rules 5.1.4 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68727,19 +68727,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-minify-font-values 5.1.0 - MIT -https://github.com/cssnano/cssnano - -(c) Bogdan Chadkin -Copyright (c) Bogdan Chadkin -(c) Bogdan Chadkin (mailto:trysound@yandex.ru) mathias https://mathiasbynens.be/notes/unquoted-font-family PostCSS https://github.com/postcss/postcss ci-img https://travis-ci.org/cssnano/postcss-minify-font-values.svg - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-minify-font-values 5.1.0 - MIT +https://github.com/cssnano/cssnano + +(c) Bogdan Chadkin +Copyright (c) Bogdan Chadkin +(c) Bogdan Chadkin (mailto:trysound@yandex.ru) mathias https://mathiasbynens.be/notes/unquoted-font-family PostCSS https://github.com/postcss/postcss ci-img https://travis-ci.org/cssnano/postcss-minify-font-values.svg + Copyright (c) Bogdan Chadkin Permission is hereby granted, free of charge, to any person @@ -68762,19 +68762,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-minify-gradients 5.1.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-minify-gradients 5.1.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68797,18 +68797,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-minify-params 5.1.4 - MIT -https://github.com/cssnano/cssnano - -(c) Bogdan Chadkin -Copyright 2015 Bogdan Chadkin - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-minify-params 5.1.4 - MIT +https://github.com/cssnano/cssnano + +(c) Bogdan Chadkin +Copyright 2015 Bogdan Chadkin + The MIT License (MIT) Copyright 2015 Bogdan Chadkin @@ -68829,19 +68829,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-minify-selectors 5.2.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -Copyright Mathias Bynens https://github.com/mathiasbynens/mothereff.in - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-minify-selectors 5.2.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +Copyright Mathias Bynens https://github.com/mathiasbynens/mothereff.in + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68864,17 +68864,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-modules-local-by-default 4.0.3 - MIT -https://github.com/css-modules/postcss-modules-local-by-default#readme - -Copyright 2015 Mark Dalgleish - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-modules-local-by-default 4.0.3 - MIT +https://github.com/css-modules/postcss-modules-local-by-default#readme + +Copyright 2015 Mark Dalgleish + The MIT License (MIT) Copyright 2015 Mark Dalgleish @@ -68895,18 +68895,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-normalize-charset 5.1.0 - MIT -https://github.com/cssnano/cssnano - -(c) Bogdan Chadkin -Copyright 2015 Bogdan Chadkin - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-normalize-charset 5.1.0 - MIT +https://github.com/cssnano/cssnano + +(c) Bogdan Chadkin +Copyright 2015 Bogdan Chadkin + The MIT License (MIT) Copyright 2015 Bogdan Chadkin @@ -68927,19 +68927,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-normalize-display-values 5.1.0 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-normalize-display-values 5.1.0 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68962,18 +68962,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-normalize-positions 5.1.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-normalize-positions 5.1.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -68996,18 +68996,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-normalize-repeat-style 5.1.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-normalize-repeat-style 5.1.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69030,19 +69030,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-normalize-string 5.1.0 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-normalize-string 5.1.0 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69065,19 +69065,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-normalize-timing-functions 5.1.0 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-normalize-timing-functions 5.1.0 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69100,18 +69100,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-normalize-unicode 5.1.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-normalize-unicode 5.1.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69134,19 +69134,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-normalize-url 5.1.0 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) docs https://github.com/sindresorhus/normalize-url options postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-normalize-url 5.1.0 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) docs https://github.com/sindresorhus/normalize-url options postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69169,19 +69169,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-normalize-whitespace 5.1.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-normalize-whitespace 5.1.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69204,18 +69204,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-ordered-values 5.1.3 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-ordered-values 5.1.3 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69238,19 +69238,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-reduce-idents 5.2.0 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) idents https://developer.mozilla.org/en-US/docs/Web/CSS/custom-ident - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-reduce-idents 5.2.0 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) idents https://developer.mozilla.org/en-US/docs/Web/CSS/custom-ident + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69273,18 +69273,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-reduce-initial 5.1.2 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-reduce-initial 5.1.2 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69307,19 +69307,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-reduce-transforms 5.1.0 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-reduce-transforms 5.1.0 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69342,17 +69342,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-selector-parser 6.0.13 - MIT -https://github.com/postcss/postcss-selector-parser - -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-selector-parser 6.0.13 - MIT +https://github.com/postcss/postcss-selector-parser + +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69375,49 +69375,49 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-sort-media-queries 4.4.1 - MIT -https://github.com/solversgroup/postcss-sort-media-queries - -Copyright 2019 Yunus Gaziev - -The MIT License (MIT) - -Copyright 2019 Yunus Gaziev - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-svgo 5.1.0 - MIT -https://github.com/cssnano/cssnano - -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-sort-media-queries 4.4.1 - MIT +https://github.com/solversgroup/postcss-sort-media-queries + +Copyright 2019 Yunus Gaziev + +The MIT License (MIT) + +Copyright 2019 Yunus Gaziev + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-svgo 5.1.0 - MIT +https://github.com/cssnano/cssnano + +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69440,19 +69440,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-unique-selectors 5.1.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-unique-selectors 5.1.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69475,18 +69475,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-value-parser 4.2.0 - MIT -https://github.com/TrySound/postcss-value-parser - -(c) Bogdan Chadkin -Copyright (c) Bogdan Chadkin - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-value-parser 4.2.0 - MIT +https://github.com/TrySound/postcss-value-parser + +(c) Bogdan Chadkin +Copyright (c) Bogdan Chadkin + Copyright (c) Bogdan Chadkin Permission is hereby granted, free of charge, to any person @@ -69509,19 +69509,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -postcss-zindex 5.1.0 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) -(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +postcss-zindex 5.1.0 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) +(c) Ben Briggs (http://beneb.info) postcss https://github.com/postcss/postcss + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -69544,17 +69544,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -p-retry 4.6.2 - MIT -https://github.com/sindresorhus/p-retry#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +p-retry 4.6.2 - MIT +https://github.com/sindresorhus/p-retry#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -69564,17 +69564,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -pretty-error 4.0.0 - MIT -https://github.com/AriaMinaei/pretty-error#readme - -Copyright (c) 2013 Aria Minaei - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +pretty-error 4.0.0 - MIT +https://github.com/AriaMinaei/pretty-error#readme + +Copyright (c) 2013 Aria Minaei + The MIT License (MIT) Copyright (c) 2013 Aria Minaei @@ -69595,19 +69595,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -pretty-time 1.1.0 - MIT -https://github.com/jonschlinkert/pretty-time - -Copyright (c) 2015-present, Jon Schlinkert -Copyright (c) 2015-2018, present, Jon Schlinkert -Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +pretty-time 1.1.0 - MIT +https://github.com/jonschlinkert/pretty-time + +Copyright (c) 2015-present, Jon Schlinkert +Copyright (c) 2015-2018, present, Jon Schlinkert +Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2015-present, Jon Schlinkert. @@ -69629,18 +69629,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -prismjs 1.29.0 - MIT -https://github.com/PrismJS/prism#readme - -Copyright (c) 2012 Lea Verou -copyright year 69cbf7a (https://github.com/PrismJS/prism/commit/69cbf7a) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +prismjs 1.29.0 - MIT +https://github.com/PrismJS/prism#readme + +Copyright (c) 2012 Lea Verou +copyright year 69cbf7a (https://github.com/PrismJS/prism/commit/69cbf7a) + MIT LICENSE Copyright (c) 2012 Lea Verou @@ -69662,49 +69662,49 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -prism-react-renderer 2.3.1 - MIT -https://github.com/FormidableLabs/prism-react-renderer#readme - -Copyright (c) 2018 Formidable - -MIT License - -Copyright (c) 2018 Formidable - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -process-nextick-args 2.0.1 - MIT -https://github.com/calvinmetcalf/process-nextick-args - -Copyright (c) 2015 Calvin Metcalf - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +prism-react-renderer 2.3.1 - MIT +https://github.com/FormidableLabs/prism-react-renderer#readme + +Copyright (c) 2018 Formidable + +MIT License + +Copyright (c) 2018 Formidable + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +process-nextick-args 2.0.1 - MIT +https://github.com/calvinmetcalf/process-nextick-args + +Copyright (c) 2015 Calvin Metcalf + # Copyright (c) 2015 Calvin Metcalf Permission is hereby granted, free of charge, to any person obtaining a copy @@ -69724,18 +69724,18 @@ 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.** - - ---------------------------------------------------------- - ---------------------------------------------------------- - -prompts 2.4.2 - MIT -https://github.com/terkelg/prompts#readme - -(c) Terkel Gjervig (https://terkel.com) -Copyright (c) 2018 Terkel Gjervig Nielsen - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +prompts 2.4.2 - MIT +https://github.com/terkelg/prompts#readme + +(c) Terkel Gjervig (https://terkel.com) +Copyright (c) 2018 Terkel Gjervig Nielsen + MIT License Copyright (c) 2018 Terkel Gjervig Nielsen @@ -69757,19 +69757,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -property-information 6.4.0 - MIT -https://github.com/wooorm/property-information#readme - -(c) Titus Wormer -(c) Facebook, Inc. -Copyright (c) 2015 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +property-information 6.4.0 - MIT +https://github.com/wooorm/property-information#readme + +(c) Titus Wormer +(c) Facebook, Inc. +Copyright (c) 2015 Titus Wormer + (The MIT License) Copyright (c) 2015 Titus Wormer @@ -69792,19 +69792,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -prop-types 15.8.1 - MIT -https://facebook.github.io/react/ - -(c) Sindre Sorhus -Copyright (c) 2013-present, Facebook, Inc. -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +prop-types 15.8.1 - MIT +https://facebook.github.io/react/ + +(c) Sindre Sorhus +Copyright (c) 2013-present, Facebook, Inc. +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) 2013-present, Facebook, Inc. @@ -69826,17 +69826,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -proxy-addr 2.0.7 - MIT -https://github.com/jshttp/proxy-addr#readme - -Copyright (c) 2014-2016 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +proxy-addr 2.0.7 - MIT +https://github.com/jshttp/proxy-addr#readme + +Copyright (c) 2014-2016 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2014-2016 Douglas Christopher Wilson @@ -69859,17 +69859,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -punycode 1.4.1 - MIT -https://mths.be/punycode - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +punycode 1.4.1 - MIT +https://mths.be/punycode + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -69890,17 +69890,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -punycode 2.3.1 - MIT -https://mths.be/punycode - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +punycode 2.3.1 - MIT +https://mths.be/punycode + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -69921,17 +69921,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -pupa 3.1.0 - MIT -https://github.com/sindresorhus/pupa#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +pupa 3.1.0 - MIT +https://github.com/sindresorhus/pupa#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -69941,17 +69941,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -queue 6.0.2 - MIT -https://github.com/jessetane/queue#readme - -Copyright (c) 2014 Jesse Tane - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +queue 6.0.2 - MIT +https://github.com/jessetane/queue#readme + +Copyright (c) 2014 Jesse Tane + The MIT License (MIT) Copyright (c) 2014 Jesse Tane @@ -69960,18 +69960,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -queue-microtask 1.2.3 - MIT -https://github.com/feross/queue-microtask - -Copyright (c) Feross Aboukhadijeh -Copyright (c) Feross Aboukhadijeh (https://feross.org) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +queue-microtask 1.2.3 - MIT +https://github.com/feross/queue-microtask + +Copyright (c) Feross Aboukhadijeh +Copyright (c) Feross Aboukhadijeh (https://feross.org) + The MIT License (MIT) Copyright (c) Feross Aboukhadijeh @@ -69992,17 +69992,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -quick-lru 5.1.1 - MIT -https://github.com/sindresorhus/quick-lru#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +quick-lru 5.1.1 - MIT +https://github.com/sindresorhus/quick-lru#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -70012,17 +70012,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -randombytes 2.1.0 - MIT -https://github.com/crypto-browserify/randombytes - -Copyright (c) 2017 crypto-browserify - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +randombytes 2.1.0 - MIT +https://github.com/crypto-browserify/randombytes + +Copyright (c) 2017 crypto-browserify + MIT License Copyright (c) 2017 crypto-browserify @@ -70044,20 +70044,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -range-parser 1.2.0 - MIT -https://github.com/jshttp/range-parser - -Copyright (c) 2012-2014 TJ Holowaychuk -Copyright (c) 2015-2016 Douglas Christopher Wilson -Copyright (c) 2012-2014 TJ Holowaychuk -Copyright (c) 2015-2016 Douglas Christopher Wilson doug@somethingdoug.com - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +range-parser 1.2.0 - MIT +https://github.com/jshttp/range-parser + +Copyright (c) 2012-2014 TJ Holowaychuk +Copyright (c) 2015-2016 Douglas Christopher Wilson +Copyright (c) 2012-2014 TJ Holowaychuk +Copyright (c) 2015-2016 Douglas Christopher Wilson doug@somethingdoug.com + (The MIT License) Copyright (c) 2012-2014 TJ Holowaychuk @@ -70081,20 +70081,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -range-parser 1.2.1 - MIT -https://github.com/jshttp/range-parser#readme - -Copyright (c) 2012-2014 TJ Holowaychuk -Copyright (c) 2015-2016 Douglas Christopher Wilson -Copyright (c) 2012-2014 TJ Holowaychuk -Copyright (c) 2015-2016 Douglas Christopher Wilson doug@somethingdoug.com - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +range-parser 1.2.1 - MIT +https://github.com/jshttp/range-parser#readme + +Copyright (c) 2012-2014 TJ Holowaychuk +Copyright (c) 2015-2016 Douglas Christopher Wilson +Copyright (c) 2012-2014 TJ Holowaychuk +Copyright (c) 2015-2016 Douglas Christopher Wilson doug@somethingdoug.com + (The MIT License) Copyright (c) 2012-2014 TJ Holowaychuk @@ -70118,20 +70118,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -raw-body 2.5.1 - MIT -https://github.com/stream-utils/raw-body#readme - -Copyright (c) 2013-2014 Jonathan Ong -Copyright (c) 2014-2022 Douglas Christopher Wilson -Copyright (c) 2013-2014 Jonathan Ong -Copyright (c) 2014-2022 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +raw-body 2.5.1 - MIT +https://github.com/stream-utils/raw-body#readme + +Copyright (c) 2013-2014 Jonathan Ong +Copyright (c) 2014-2022 Douglas Christopher Wilson +Copyright (c) 2013-2014 Jonathan Ong +Copyright (c) 2014-2022 Douglas Christopher Wilson + The MIT License (MIT) Copyright (c) 2013-2014 Jonathan Ong @@ -70154,17 +70154,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -react 18.2.0 - MIT -https://reactjs.org/ - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +react 18.2.0 - MIT +https://reactjs.org/ + +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -70186,18 +70186,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-dev-utils 12.0.1 - MIT -https://github.com/facebook/create-react-app#readme - -Copyright (c) 2013-present, Facebook, Inc. -Copyright (c) 2015-present, Facebook, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-dev-utils 12.0.1 - MIT +https://github.com/facebook/create-react-app#readme + +Copyright (c) 2013-present, Facebook, Inc. +Copyright (c) 2015-present, Facebook, Inc. + MIT License Copyright (c) 2013-present, Facebook, Inc. @@ -70219,19 +70219,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-dom 18.2.0 - MIT -https://reactjs.org/ - -(c) Ka (c) -(c) http://www.w3.org/1999/xhtml -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-dom 18.2.0 - MIT +https://reactjs.org/ + +(c) Ka (c) +(c) http://www.w3.org/1999/xhtml +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -70253,18 +70253,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-error-overlay 6.0.11 - MIT -https://github.com/facebook/create-react-app#readme - -(c) 2021 Denis Pushkarev -Copyright (c) 2013-present, Facebook, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-error-overlay 6.0.11 - MIT +https://github.com/facebook/create-react-app#readme + +(c) 2021 Denis Pushkarev +Copyright (c) 2013-present, Facebook, Inc. + MIT License Copyright (c) 2013-present, Facebook, Inc. @@ -70286,18 +70286,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-fast-compare 3.2.2 - MIT -https://github.com/FormidableLabs/react-fast-compare - -Copyright (c) 2018 Formidable Labs -Copyright (c) 2017 Evgeny Poberezkin - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-fast-compare 3.2.2 - MIT +https://github.com/FormidableLabs/react-fast-compare + +Copyright (c) 2018 Formidable Labs +Copyright (c) 2017 Evgeny Poberezkin + MIT License Copyright (c) 2018 Formidable Labs @@ -70320,17 +70320,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-is 16.13.1 - MIT -https://reactjs.org/ - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-is 16.13.1 - MIT +https://reactjs.org/ + +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -70352,16 +70352,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-json-view-lite 1.2.1 - MIT -https://github.com/AnyRoad/react-json-view-lite - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-json-view-lite 1.2.1 - MIT +https://github.com/AnyRoad/react-json-view-lite + + MIT License Copyright (c) @@ -70370,17 +70370,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-loadable-ssr-addon-v5-slorber 1.0.1 - MIT - - -Copyright (c) 2018 Marcos Goncalves - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-loadable-ssr-addon-v5-slorber 1.0.1 - MIT + + +Copyright (c) 2018 Marcos Goncalves + MIT License Copyright (c) 2018 Marcos Gonçalves @@ -70402,24 +70402,24 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-router 5.3.4 - MIT -https://reactrouter.com/ - -(c) Sindre Sorhus -Copyright 2015, Yahoo! Inc. -Copyright (c) React Training 2015-2019 -Copyright (c) Remix Software 2020-2022 -Copyright (c) 2013-present, Facebook, Inc. -Copyright (c) Facebook, Inc. and its affiliates -Copyright (c) 2019-present StringEpsilon -Copyright (c) 2017-2019 James Kyle https://github.com/StringEpsilon/mini-create-react-context - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-router 5.3.4 - MIT +https://reactrouter.com/ + +(c) Sindre Sorhus +Copyright 2015, Yahoo! Inc. +Copyright (c) React Training 2015-2019 +Copyright (c) Remix Software 2020-2022 +Copyright (c) 2013-present, Facebook, Inc. +Copyright (c) Facebook, Inc. and its affiliates +Copyright (c) 2019-present StringEpsilon +Copyright (c) 2017-2019 James Kyle https://github.com/StringEpsilon/mini-create-react-context + MIT License Copyright (c) React Training 2015-2019 @@ -70442,17 +70442,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-router-config 5.1.1 - MIT -https://github.com/ReactTraining/react-router#readme - -Copyright (c) React Training 2016-2018 - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-router-config 5.1.1 - MIT +https://github.com/ReactTraining/react-router#readme + +Copyright (c) React Training 2016-2018 + MIT License Copyright (c) React Training 2016-2018 @@ -70474,22 +70474,22 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -react-router-dom 5.3.4 - MIT -https://reactrouter.com/ - -(c) Sindre Sorhus -Copyright 2015, Yahoo! Inc. -Copyright (c) React Training 2015-2019 -Copyright (c) Remix Software 2020-2022 -Copyright (c) 2013-present, Facebook, Inc. -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +react-router-dom 5.3.4 - MIT +https://reactrouter.com/ + +(c) Sindre Sorhus +Copyright 2015, Yahoo! Inc. +Copyright (c) React Training 2015-2019 +Copyright (c) Remix Software 2020-2022 +Copyright (c) 2013-present, Facebook, Inc. +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) React Training 2015-2019 @@ -70512,17 +70512,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -readable-stream 2.3.8 - MIT -https://github.com/nodejs/readable-stream#readme - -Copyright Joyent, Inc. and other Node contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +readable-stream 2.3.8 - MIT +https://github.com/nodejs/readable-stream#readme + +Copyright Joyent, Inc. and other Node contributors + Node.js is licensed for use as follows: """ @@ -70570,17 +70570,17 @@ 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. """ - - ---------------------------------------------------------- - ---------------------------------------------------------- - -readable-stream 3.6.2 - MIT -https://github.com/nodejs/readable-stream#readme - -Copyright Joyent, Inc. and other Node contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +readable-stream 3.6.2 - MIT +https://github.com/nodejs/readable-stream#readme + +Copyright Joyent, Inc. and other Node contributors + Node.js is licensed for use as follows: """ @@ -70628,18 +70628,18 @@ 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. """ - - ---------------------------------------------------------- - ---------------------------------------------------------- - -readdirp 3.6.0 - MIT -https://github.com/paulmillr/readdirp - -Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com) -Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +readdirp 3.6.0 - MIT +https://github.com/paulmillr/readdirp + +Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com) +Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller + MIT License Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com) @@ -70661,17 +70661,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -reading-time 1.5.0 - MIT -https://github.com/ngryman/reading-time#readme - -Copyright (c) Nicolas Gryman - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +reading-time 1.5.0 - MIT +https://github.com/ngryman/reading-time#readme + +Copyright (c) Nicolas Gryman + The MIT License (MIT) Copyright (c) Nicolas Gryman (ngryman.sh) @@ -70693,17 +70693,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -rechoir 0.6.2 - MIT -https://github.com/tkellen/node-rechoir - -Copyright (c) 2015 Tyler Kellen - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +rechoir 0.6.2 - MIT +https://github.com/tkellen/node-rechoir + +Copyright (c) 2015 Tyler Kellen + Copyright (c) 2015 Tyler Kellen Permission is hereby granted, free of charge, to any person @@ -70726,16 +70726,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -recursive-readdir 2.2.3 - MIT -https://github.com/jergason/recursive-readdir#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +recursive-readdir 2.2.3 - MIT +https://github.com/jergason/recursive-readdir#readme + + The MIT License (MIT) Copyright (c) @@ -70757,17 +70757,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -regenerate 1.4.2 - MIT -https://mths.be/regenerate - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +regenerate 1.4.2 - MIT +https://mths.be/regenerate + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -70788,17 +70788,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -regenerate-unicode-properties 10.1.1 - MIT -https://github.com/mathiasbynens/regenerate-unicode-properties - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +regenerate-unicode-properties 10.1.1 - MIT +https://github.com/mathiasbynens/regenerate-unicode-properties + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -70819,17 +70819,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -regenerator-runtime 0.14.1 - MIT -https://github.com/facebook/regenerator/tree/main#readme - -Copyright (c) 2014-present, Facebook, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +regenerator-runtime 0.14.1 - MIT +https://github.com/facebook/regenerator/tree/main#readme + +Copyright (c) 2014-present, Facebook, Inc. + MIT License Copyright (c) 2014-present, Facebook, Inc. @@ -70851,17 +70851,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -regenerator-transform 0.15.2 - MIT -https://github.com/facebook/regenerator/tree/main#readme - -Copyright (c) 2014-present, Facebook, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +regenerator-transform 0.15.2 - MIT +https://github.com/facebook/regenerator/tree/main#readme + +Copyright (c) 2014-present, Facebook, Inc. + MIT License Copyright (c) 2014-present, Facebook, Inc. @@ -70883,17 +70883,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -regexpu-core 5.3.2 - MIT -https://mths.be/regexpu - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +regexpu-core 5.3.2 - MIT +https://mths.be/regexpu + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -70914,18 +70914,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -registry-auth-token 5.0.2 - MIT -https://github.com/rexxars/registry-auth-token#readme - -Copyright (c) 2016 Espen Hovlandsdal -(c) Espen Hovlandsdal (https://espen.codes/) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +registry-auth-token 5.0.2 - MIT +https://github.com/rexxars/registry-auth-token#readme + +Copyright (c) 2016 Espen Hovlandsdal +(c) Espen Hovlandsdal (https://espen.codes/) + The MIT License (MIT) Copyright (c) 2016 Espen Hovlandsdal @@ -70947,17 +70947,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -registry-url 6.0.1 - MIT -https://github.com/sindresorhus/registry-url#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +registry-url 6.0.1 - MIT +https://github.com/sindresorhus/registry-url#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -70967,18 +70967,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -rehype-raw 7.0.0 - MIT -https://github.com/rehypejs/rehype-raw#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +rehype-raw 7.0.0 - MIT +https://github.com/rehypejs/rehype-raw#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -71001,17 +71001,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -relateurl 0.2.7 - MIT -https://github.com/stevenvachon/relateurl - -Copyright (c) Steven Vachon (svachon.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +relateurl 0.2.7 - MIT +https://github.com/stevenvachon/relateurl + +Copyright (c) Steven Vachon (svachon.com) + The MIT License (MIT) Copyright (c) Steven Vachon (svachon.com) @@ -71033,18 +71033,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -remark-directive 3.0.0 - MIT -https://github.com/remarkjs/remark-directive#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +remark-directive 3.0.0 - MIT +https://github.com/remarkjs/remark-directive#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -71067,17 +71067,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -remark-emoji 4.0.1 - MIT -https://github.com/rhysd/remark-emoji#readme - -Copyright (c) 2016 rhysd - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +remark-emoji 4.0.1 - MIT +https://github.com/rhysd/remark-emoji#readme + +Copyright (c) 2016 rhysd + The MIT License (MIT) Copyright (c) 2016 rhysd @@ -71098,18 +71098,18 @@ PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -remark-frontmatter 5.0.0 - MIT -https://github.com/remarkjs/remark-frontmatter#readme - -(c) Titus Wormer -Copyright (c) 2017 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +remark-frontmatter 5.0.0 - MIT +https://github.com/remarkjs/remark-frontmatter#readme + +(c) Titus Wormer +Copyright (c) 2017 Titus Wormer + (The MIT License) Copyright (c) 2017 Titus Wormer @@ -71132,18 +71132,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -remark-gfm 4.0.0 - MIT -https://github.com/remarkjs/remark-gfm#readme - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +remark-gfm 4.0.0 - MIT +https://github.com/remarkjs/remark-gfm#readme + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -71166,18 +71166,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -remark-mdx 3.0.0 - MIT -https://mdxjs.com/ - -(c) Titus Wormer -Copyright (c) 2020 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +remark-mdx 3.0.0 - MIT +https://mdxjs.com/ + +(c) Titus Wormer +Copyright (c) 2020 Titus Wormer + (The MIT License) Copyright (c) 2020 Titus Wormer @@ -71199,18 +71199,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -remark-parse 11.0.0 - MIT -https://remark.js.org/ - -(c) Titus Wormer -Copyright (c) 2014 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +remark-parse 11.0.0 - MIT +https://remark.js.org/ + +(c) Titus Wormer +Copyright (c) 2014 Titus Wormer + (The MIT License) Copyright (c) 2014 Titus Wormer @@ -71232,18 +71232,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -remark-rehype 11.0.0 - MIT -https://github.com/remarkjs/remark-rehype#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +remark-rehype 11.0.0 - MIT +https://github.com/remarkjs/remark-rehype#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -71266,18 +71266,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -remark-stringify 11.0.0 - MIT -https://remark.js.org/ - -(c) Titus Wormer -Copyright (c) 2014 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +remark-stringify 11.0.0 - MIT +https://remark.js.org/ + +(c) Titus Wormer +Copyright (c) 2014 Titus Wormer + (The MIT License) Copyright (c) 2014 Titus Wormer @@ -71299,17 +71299,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -renderkid 3.0.0 - MIT -https://github.com/AriaMinaei/RenderKid#readme - -Copyright (c) 2015 Aria Minaei - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +renderkid 3.0.0 - MIT +https://github.com/AriaMinaei/RenderKid#readme + +Copyright (c) 2015 Aria Minaei + The MIT License (MIT) Copyright (c) 2015 Aria Minaei @@ -71330,18 +71330,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -require-from-string 2.0.2 - MIT -https://github.com/floatdrop/require-from-string#readme - -(c) Vsevolod Strukchinsky (http://github.com/floatdrop) -Copyright (c) Vsevolod Strukchinsky - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +require-from-string 2.0.2 - MIT +https://github.com/floatdrop/require-from-string#readme + +(c) Vsevolod Strukchinsky (http://github.com/floatdrop) +Copyright (c) Vsevolod Strukchinsky + The MIT License (MIT) Copyright (c) Vsevolod Strukchinsky (github.com/floatdrop) @@ -71363,17 +71363,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -require-like 0.1.2 - MIT -https://github.com/felixge/node-require-like - -Copyright (c) 2011 Felix Geisendorfer (felix@debuggable.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +require-like 0.1.2 - MIT +https://github.com/felixge/node-require-like + +Copyright (c) 2011 Felix Geisendorfer (felix@debuggable.com) + Copyright (c) 2011 Felix Geisendörfer (felix@debuggable.com) Permission is hereby granted, free of charge, to any person obtaining a copy @@ -71393,17 +71393,17 @@ Copyright (c) 2011 Felix Geisendörfer (felix@debuggable.com) 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -requires-port 1.0.0 - MIT -https://github.com/unshiftio/requires-port - -Copyright (c) 2015 Unshift.io, Arnout Kazemier - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +requires-port 1.0.0 - MIT +https://github.com/unshiftio/requires-port + +Copyright (c) 2015 Unshift.io, Arnout Kazemier + The MIT License (MIT) Copyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors. @@ -71426,17 +71426,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -resolve 1.22.8 - MIT -https://github.com/browserify/resolve#readme - -Copyright (c) 2012 James Halliday - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +resolve 1.22.8 - MIT +https://github.com/browserify/resolve#readme + +Copyright (c) 2012 James Halliday + MIT License Copyright (c) 2012 James Halliday @@ -71458,17 +71458,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -resolve-alpn 1.2.1 - MIT -https://github.com/szmarczak/resolve-alpn#readme - -Copyright (c) 2018 Szymon Marczak - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +resolve-alpn 1.2.1 - MIT +https://github.com/szmarczak/resolve-alpn#readme + +Copyright (c) 2018 Szymon Marczak + MIT License Copyright (c) 2018 Szymon Marczak @@ -71491,18 +71491,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -resolve-from 4.0.0 - MIT -https://github.com/sindresorhus/resolve-from#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +resolve-from 4.0.0 - MIT +https://github.com/sindresorhus/resolve-from#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -71512,17 +71512,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -resolve-pathname 3.0.0 - MIT -https://github.com/mjackson/resolve-pathname#readme - -Copyright (c) Michael Jackson 2016-2018 - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +resolve-pathname 3.0.0 - MIT +https://github.com/mjackson/resolve-pathname#readme + +Copyright (c) Michael Jackson 2016-2018 + MIT License Copyright (c) Michael Jackson 2016-2018 @@ -71544,18 +71544,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -responselike 3.0.0 - MIT -https://github.com/sindresorhus/responselike#readme - -Copyright (c) Luke Childs (https://lukechilds.co.uk) -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +responselike 3.0.0 - MIT +https://github.com/sindresorhus/responselike#readme + +Copyright (c) Luke Childs (https://lukechilds.co.uk) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -71566,17 +71566,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -retry 0.13.1 - MIT -https://github.com/tim-kos/node-retry - -Copyright (c) 2011 Tim Koschutzki (tim@debuggable.com) Felix Geisendorfer (felix@debuggable.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +retry 0.13.1 - MIT +https://github.com/tim-kos/node-retry + +Copyright (c) 2011 Tim Koschutzki (tim@debuggable.com) Felix Geisendorfer (felix@debuggable.com) + Copyright (c) 2011: Tim Koschützki (tim@debuggable.com) Felix Geisendörfer (felix@debuggable.com) @@ -71598,17 +71598,17 @@ Felix Geisendörfer (felix@debuggable.com) 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -reusify 1.0.4 - MIT -https://github.com/mcollina/reusify#readme - -Copyright (c) 2015 Matteo Collina - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +reusify 1.0.4 - MIT +https://github.com/mcollina/reusify#readme + +Copyright (c) 2015 Matteo Collina + The MIT License (MIT) Copyright (c) 2015 Matteo Collina @@ -71631,18 +71631,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -rtlcss 4.1.1 - MIT -https://rtlcss.com/ - -Copyright 2017 Mohammad Younes -Copyright (c) 2014-2016 Mohammad Younes - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +rtlcss 4.1.1 - MIT +https://rtlcss.com/ + +Copyright 2017 Mohammad Younes +Copyright (c) 2014-2016 Mohammad Younes + The MIT License (MIT) Copyright (c) 2014-2016 Mohammad Younes @@ -71664,18 +71664,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -run-parallel 1.2.0 - MIT -https://github.com/feross/run-parallel - -Copyright (c) Feross Aboukhadijeh -Copyright (c) Feross Aboukhadijeh (http://feross.org) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +run-parallel 1.2.0 - MIT +https://github.com/feross/run-parallel + +Copyright (c) Feross Aboukhadijeh +Copyright (c) Feross Aboukhadijeh (http://feross.org) + The MIT License (MIT) Copyright (c) Feross Aboukhadijeh @@ -71696,18 +71696,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -safe-buffer 5.1.2 - MIT -https://github.com/feross/safe-buffer - -Copyright (c) Feross Aboukhadijeh -Copyright (c) Feross Aboukhadijeh (http://feross.org) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +safe-buffer 5.1.2 - MIT +https://github.com/feross/safe-buffer + +Copyright (c) Feross Aboukhadijeh +Copyright (c) Feross Aboukhadijeh (http://feross.org) + The MIT License (MIT) Copyright (c) Feross Aboukhadijeh @@ -71729,18 +71729,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -safe-buffer 5.2.1 - MIT -https://github.com/feross/safe-buffer - -Copyright (c) Feross Aboukhadijeh -Copyright (c) Feross Aboukhadijeh (http://feross.org) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +safe-buffer 5.2.1 - MIT +https://github.com/feross/safe-buffer + +Copyright (c) Feross Aboukhadijeh +Copyright (c) Feross Aboukhadijeh (http://feross.org) + The MIT License (MIT) Copyright (c) Feross Aboukhadijeh @@ -71762,17 +71762,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -safer-buffer 2.1.2 - MIT -https://github.com/ChALkeR/safer-buffer#readme - -Copyright (c) 2018 Nikita Skovoroda - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +safer-buffer 2.1.2 - MIT +https://github.com/ChALkeR/safer-buffer#readme + +Copyright (c) 2018 Nikita Skovoroda + MIT License Copyright (c) 2018 Nikita Skovoroda @@ -71794,17 +71794,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -scheduler 0.23.0 - MIT -https://reactjs.org/ - -Copyright (c) Facebook, Inc. and its affiliates - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +scheduler 0.23.0 - MIT +https://reactjs.org/ + +Copyright (c) Facebook, Inc. and its affiliates + MIT License Copyright (c) Facebook, Inc. and its affiliates. @@ -71826,17 +71826,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -schema-utils 2.7.0 - MIT -https://github.com/webpack/schema-utils - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +schema-utils 2.7.0 - MIT +https://github.com/webpack/schema-utils + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -71857,17 +71857,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -schema-utils 3.3.0 - MIT -https://github.com/webpack/schema-utils - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +schema-utils 3.3.0 - MIT +https://github.com/webpack/schema-utils + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -71888,17 +71888,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -schema-utils 4.2.0 - MIT -https://github.com/webpack/schema-utils - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +schema-utils 4.2.0 - MIT +https://github.com/webpack/schema-utils + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -71919,18 +71919,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -section-matter 1.0.0 - MIT -https://github.com/jonschlinkert/section-matter - -Copyright (c) 2017, Jon Schlinkert -Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +section-matter 1.0.0 - MIT +https://github.com/jonschlinkert/section-matter + +Copyright (c) 2017, Jon Schlinkert +Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2017, Jon Schlinkert. @@ -71952,17 +71952,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -select-hose 2.0.0 - MIT -https://github.com/indutny/select-hose#readme - -Copyright Fedor Indutny, 2015 - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +select-hose 2.0.0 - MIT +https://github.com/indutny/select-hose#readme + +Copyright Fedor Indutny, 2015 + MIT License Copyright (c) @@ -71971,17 +71971,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -selfsigned 2.4.1 - MIT -https://github.com/jfromaniello/selfsigned#readme - -Copyright (c) 2013 Jose F. Romaniello - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +selfsigned 2.4.1 - MIT +https://github.com/jfromaniello/selfsigned#readme + +Copyright (c) 2013 Jose F. Romaniello + MIT License Copyright (c) 2013 José F. Romaniello @@ -72004,17 +72004,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -semver-diff 4.0.0 - MIT -https://github.com/sindresorhus/semver-diff#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +semver-diff 4.0.0 - MIT +https://github.com/sindresorhus/semver-diff#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -72024,18 +72024,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -send 0.18.0 - MIT -https://github.com/pillarjs/send#readme - -Copyright (c) 2012 TJ Holowaychuk -Copyright (c) 2014-2022 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +send 0.18.0 - MIT +https://github.com/pillarjs/send#readme + +Copyright (c) 2012 TJ Holowaychuk +Copyright (c) 2014-2022 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2012 TJ Holowaychuk @@ -72059,18 +72059,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -serve-handler 6.1.5 - MIT -https://github.com/zeit/serve-handler#readme - -Copyright (c) 2018 ZEIT, Inc. -Copyright (c) 2014 Scott Corgan - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +serve-handler 6.1.5 - MIT +https://github.com/zeit/serve-handler#readme + +Copyright (c) 2018 ZEIT, Inc. +Copyright (c) 2014 Scott Corgan + MIT License Copyright (c) 2018 ZEIT, Inc. @@ -72092,21 +72092,21 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -serve-index 1.9.1 - MIT -https://github.com/expressjs/serve-index#readme - -Copyright (c) 2011 LearnBoost -Copyright (c) 2010 Sencha Inc. -Copyright (c) 2011 Sencha Inc. -Copyright (c) 2011 TJ Holowaychuk -Copyright (c) 2014-2015 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +serve-index 1.9.1 - MIT +https://github.com/expressjs/serve-index#readme + +Copyright (c) 2011 LearnBoost +Copyright (c) 2010 Sencha Inc. +Copyright (c) 2011 Sencha Inc. +Copyright (c) 2011 TJ Holowaychuk +Copyright (c) 2014-2015 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2010 Sencha Inc. @@ -72132,20 +72132,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -serve-static 1.15.0 - MIT -https://github.com/expressjs/serve-static#readme - -Copyright (c) 2011 LearnBoost -Copyright (c) 2010 Sencha Inc. -Copyright (c) 2011 TJ Holowaychuk -Copyright (c) 2014-2016 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +serve-static 1.15.0 - MIT +https://github.com/expressjs/serve-static#readme + +Copyright (c) 2011 LearnBoost +Copyright (c) 2010 Sencha Inc. +Copyright (c) 2011 TJ Holowaychuk +Copyright (c) 2014-2016 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2010 Sencha Inc. @@ -72171,17 +72171,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -set-function-length 1.1.1 - MIT -https://github.com/ljharb/set-function-length#readme - -Copyright (c) Jordan Harband and contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +set-function-length 1.1.1 - MIT +https://github.com/ljharb/set-function-length#readme + +Copyright (c) Jordan Harband and contributors + MIT License Copyright (c) Jordan Harband and contributors @@ -72203,18 +72203,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -shallow-clone 3.0.1 - MIT -https://github.com/jonschlinkert/shallow-clone - -Copyright (c) 2015-present, Jon Schlinkert -Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +shallow-clone 3.0.1 - MIT +https://github.com/jonschlinkert/shallow-clone + +Copyright (c) 2015-present, Jon Schlinkert +Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2015-present, Jon Schlinkert. @@ -72236,17 +72236,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -shallowequal 1.1.0 - MIT -https://github.com/dashed/shallowequal#readme - -Copyright (c) 2017 Alberto Leal - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +shallowequal 1.1.0 - MIT +https://github.com/dashed/shallowequal#readme + +Copyright (c) 2017 Alberto Leal + MIT License Copyright (c) 2017 Alberto Leal (github.com/dashed) @@ -72268,17 +72268,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -shebang-command 2.0.0 - MIT -https://github.com/kevva/shebang-command#readme - -Copyright (c) Kevin Martensson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +shebang-command 2.0.0 - MIT +https://github.com/kevva/shebang-command#readme + +Copyright (c) Kevin Martensson + MIT License Copyright (c) Kevin Mårtensson (github.com/kevva) @@ -72288,18 +72288,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -shebang-regex 3.0.0 - MIT -https://github.com/sindresorhus/shebang-regex#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +shebang-regex 3.0.0 - MIT +https://github.com/sindresorhus/shebang-regex#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -72309,17 +72309,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -shell-quote 1.8.1 - MIT -https://github.com/ljharb/shell-quote - -Copyright (c) 2013 James Halliday (mail@substack.net) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +shell-quote 1.8.1 - MIT +https://github.com/ljharb/shell-quote + +Copyright (c) 2013 James Halliday (mail@substack.net) + The MIT License Copyright (c) 2013 James Halliday (mail@substack.net) @@ -72342,18 +72342,18 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -side-channel 1.0.4 - MIT -https://github.com/ljharb/side-channel#readme - -Copyright (c) 2019 Jordan Harband - +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +side-channel 1.0.4 - MIT +https://github.com/ljharb/side-channel#readme + +Copyright (c) 2019 Jordan Harband + MIT License Copyright (c) 2019 Jordan Harband @@ -72375,17 +72375,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -sirv 2.0.4 - MIT -https://github.com/lukeed/sirv#readme - -(c) Luke Edwards (https://lukeed.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +sirv 2.0.4 - MIT +https://github.com/lukeed/sirv#readme + +(c) Luke Edwards (https://lukeed.com) + MIT License Copyright (c) @@ -72394,18 +72394,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -sisteransi 1.0.5 - MIT -https://github.com/terkelg/sisteransi#readme - -(c) Terkel Gjervig (https://terkel.com) -Copyright (c) 2018 Terkel Gjervig Nielsen - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +sisteransi 1.0.5 - MIT +https://github.com/terkelg/sisteransi#readme + +(c) Terkel Gjervig (https://terkel.com) +Copyright (c) 2018 Terkel Gjervig Nielsen + MIT License Copyright (c) 2018 Terkel Gjervig Nielsen @@ -72427,19 +72427,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -sitemap 7.1.1 - MIT -https://github.com/ekalinin/sitemap.js#readme - -Copyright (c) 2011 Eugene Kalinin -Copyright JS Foundation and other contributors -copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +sitemap 7.1.1 - MIT +https://github.com/ekalinin/sitemap.js#readme + +Copyright (c) 2011 Eugene Kalinin +Copyright JS Foundation and other contributors +copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + (The MIT License) Copyright (c) 2011 Eugene Kalinin @@ -72462,16 +72462,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -skin-tone 2.0.0 - MIT -https://github.com/sindresorhus/skin-tone#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +skin-tone 2.0.0 - MIT +https://github.com/sindresorhus/skin-tone#readme + + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -72481,18 +72481,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -slash 3.0.0 - MIT -https://github.com/sindresorhus/slash#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +slash 3.0.0 - MIT +https://github.com/sindresorhus/slash#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -72502,17 +72502,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -sockjs 0.3.24 - MIT -https://github.com/sockjs/sockjs-node - -Copyright (c) 2011 VMware, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +sockjs 0.3.24 - MIT +https://github.com/sockjs/sockjs-node + +Copyright (c) 2011 VMware, Inc. + Parts of the code are derived from various open source projects. For code derived from Socket.IO by Guillermo Rauch see @@ -72542,17 +72542,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -sort-css-media-queries 2.1.0 - MIT -https://github.com/dutchenkoOleg/sort-css-media-queries#readme - -Copyright (c) 2017 Oleg Dutchenko - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +sort-css-media-queries 2.1.0 - MIT +https://github.com/dutchenkoOleg/sort-css-media-queries#readme + +Copyright (c) 2017 Oleg Dutchenko + MIT License Copyright (c) 2017 Oleg Dutchenko @@ -72574,17 +72574,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -source-map-support 0.5.21 - MIT -https://github.com/evanw/node-source-map-support#readme - -Copyright (c) 2014 Evan Wallace - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +source-map-support 0.5.21 - MIT +https://github.com/evanw/node-source-map-support#readme + +Copyright (c) 2014 Evan Wallace + The MIT License (MIT) Copyright (c) 2014 Evan Wallace @@ -72606,18 +72606,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -space-separated-tokens 2.0.2 - MIT -https://github.com/wooorm/space-separated-tokens#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +space-separated-tokens 2.0.2 - MIT +https://github.com/wooorm/space-separated-tokens#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -72640,17 +72640,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -spdy 4.0.2 - MIT -https://github.com/indutny/node-spdy - -Copyright Fedor Indutny, 2015 - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +spdy 4.0.2 - MIT +https://github.com/indutny/node-spdy + +Copyright Fedor Indutny, 2015 + MIT License Copyright (c) @@ -72659,17 +72659,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -spdy-transport 3.0.0 - MIT -https://github.com/spdy-http2/spdy-transport - -Copyright Fedor Indutny, 2015 - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +spdy-transport 3.0.0 - MIT +https://github.com/spdy-http2/spdy-transport + +Copyright Fedor Indutny, 2015 + MIT License Copyright (c) @@ -72678,17 +72678,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -srcset 4.0.0 - MIT -https://github.com/sindresorhus/srcset#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +srcset 4.0.0 - MIT +https://github.com/sindresorhus/srcset#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -72698,18 +72698,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -stable 0.1.8 - MIT -https://github.com/Two-Screen/stable#readme - -(c) 2018 Angry Bytes and contributors -Copyright (c) 2018 Angry Bytes and contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +stable 0.1.8 - MIT +https://github.com/Two-Screen/stable#readme + +(c) 2018 Angry Bytes and contributors +Copyright (c) 2018 Angry Bytes and contributors + MIT License Copyright (c) @@ -72718,20 +72718,20 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -statuses 2.0.1 - MIT -https://github.com/jshttp/statuses#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2016 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2016 Douglas Christopher Wilson - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +statuses 2.0.1 - MIT +https://github.com/jshttp/statuses#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2016 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2016 Douglas Christopher Wilson + The MIT License (MIT) @@ -72755,17 +72755,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -std-env 3.7.0 - MIT -https://github.com/unjs/std-env#readme - -Copyright (c) Pooya Parsa - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +std-env 3.7.0 - MIT +https://github.com/unjs/std-env#readme + +Copyright (c) Pooya Parsa + MIT License Copyright (c) Pooya Parsa @@ -72788,17 +72788,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -string_decoder 1.3.0 - MIT -https://github.com/nodejs/string_decoder - -Copyright Joyent, Inc. and other Node contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +string_decoder 1.3.0 - MIT +https://github.com/nodejs/string_decoder + +Copyright Joyent, Inc. and other Node contributors + Node.js is licensed for use as follows: """ @@ -72847,18 +72847,18 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ - - ---------------------------------------------------------- - ---------------------------------------------------------- - -stringify-entities 4.0.3 - MIT -https://github.com/wooorm/stringify-entities#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +stringify-entities 4.0.3 - MIT +https://github.com/wooorm/stringify-entities#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + (The MIT License) Copyright (c) 2015 Titus Wormer @@ -72881,17 +72881,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -string-width 4.2.3 - MIT -https://github.com/sindresorhus/string-width#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +string-width 4.2.3 - MIT +https://github.com/sindresorhus/string-width#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -72901,17 +72901,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -string-width 5.1.2 - MIT -https://github.com/sindresorhus/string-width#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +string-width 5.1.2 - MIT +https://github.com/sindresorhus/string-width#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -72921,17 +72921,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -strip-ansi 6.0.1 - MIT -https://github.com/chalk/strip-ansi#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +strip-ansi 6.0.1 - MIT +https://github.com/chalk/strip-ansi#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -72941,17 +72941,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -strip-ansi 7.1.0 - MIT -https://github.com/chalk/strip-ansi#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +strip-ansi 7.1.0 - MIT +https://github.com/chalk/strip-ansi#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -72961,18 +72961,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -strip-bom-string 1.0.0 - MIT -https://github.com/jonschlinkert/strip-bom-string - -Copyright (c) 2015, 2017, Jon Schlinkert -Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +strip-bom-string 1.0.0 - MIT +https://github.com/jonschlinkert/strip-bom-string + +Copyright (c) 2015, 2017, Jon Schlinkert +Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2015, 2017, Jon Schlinkert @@ -72994,18 +72994,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -strip-final-newline 2.0.0 - MIT -https://github.com/sindresorhus/strip-final-newline#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +strip-final-newline 2.0.0 - MIT +https://github.com/sindresorhus/strip-final-newline#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -73015,18 +73015,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -strip-json-comments 2.0.1 - MIT -https://github.com/sindresorhus/strip-json-comments#readme - -(c) Sindre Sorhus (http://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +strip-json-comments 2.0.1 - MIT +https://github.com/sindresorhus/strip-json-comments#readme + +(c) Sindre Sorhus (http://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + The MIT License (MIT) Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -73048,17 +73048,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -strip-json-comments 3.1.1 - MIT -https://github.com/sindresorhus/strip-json-comments#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +strip-json-comments 3.1.1 - MIT +https://github.com/sindresorhus/strip-json-comments#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -73068,18 +73068,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -stylehacks 5.1.1 - MIT -https://github.com/cssnano/cssnano - -(c) Ben Briggs (http://beneb.info) -Copyright (c) Ben Briggs (http://beneb.info) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +stylehacks 5.1.1 - MIT +https://github.com/cssnano/cssnano + +(c) Ben Briggs (http://beneb.info) +Copyright (c) Ben Briggs (http://beneb.info) + Copyright (c) Ben Briggs (http://beneb.info) Permission is hereby granted, free of charge, to any person @@ -73102,17 +73102,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -style-to-object 0.4.4 - MIT -https://github.com/remarkablemark/style-to-object#readme - -Copyright (c) 2017 Menglin Mark Xu - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +style-to-object 0.4.4 - MIT +https://github.com/remarkablemark/style-to-object#readme + +Copyright (c) 2017 Menglin Mark Xu + The MIT License (MIT) Copyright (c) 2017 Menglin "Mark" Xu @@ -73135,17 +73135,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -style-to-object 1.0.5 - MIT -https://github.com/remarkablemark/style-to-object#readme - -Copyright (c) 2017 Menglin Mark Xu - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +style-to-object 1.0.5 - MIT +https://github.com/remarkablemark/style-to-object#readme + +Copyright (c) 2017 Menglin Mark Xu + The MIT License (MIT) Copyright (c) 2017 Menglin "Mark" Xu @@ -73168,17 +73168,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -supports-color 7.2.0 - MIT -https://github.com/chalk/supports-color#readme - -Copyright (c) Sindre Sorhus (sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +supports-color 7.2.0 - MIT +https://github.com/chalk/supports-color#readme + +Copyright (c) Sindre Sorhus (sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -73188,17 +73188,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -supports-color 8.1.1 - MIT -https://github.com/chalk/supports-color#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +supports-color 8.1.1 - MIT +https://github.com/chalk/supports-color#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -73208,17 +73208,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -supports-preserve-symlinks-flag 1.0.0 - MIT -https://github.com/inspect-js/node-supports-preserve-symlinks-flag#readme - -Copyright (c) 2022 Inspect JS - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +supports-preserve-symlinks-flag 1.0.0 - MIT +https://github.com/inspect-js/node-supports-preserve-symlinks-flag#readme + +Copyright (c) 2022 Inspect JS + MIT License Copyright (c) 2022 Inspect JS @@ -73240,17 +73240,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -svgo 2.8.0 - MIT -https://github.com/svg/svgo - -Copyright (c) Kir Belevich - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +svgo 2.8.0 - MIT +https://github.com/svg/svgo + +Copyright (c) Kir Belevich + MIT License Copyright (c) Kir Belevich @@ -73272,16 +73272,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -svg-parser 2.0.4 - MIT -https://github.com/Rich-Harris/svg-parser#README - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +svg-parser 2.0.4 - MIT +https://github.com/Rich-Harris/svg-parser#README + + MIT License Copyright (c) @@ -73290,17 +73290,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -tapable 1.1.3 - MIT -https://github.com/webpack/tapable - -Copyright (c) Tobias Koppers - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +tapable 1.1.3 - MIT +https://github.com/webpack/tapable + +Copyright (c) Tobias Koppers + The MIT License Copyright (c) Tobias Koppers @sokra @@ -73322,17 +73322,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -tapable 2.2.1 - MIT -https://github.com/webpack/tapable - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +tapable 2.2.1 - MIT +https://github.com/webpack/tapable + +Copyright JS Foundation and other contributors + The MIT License Copyright JS Foundation and other contributors @@ -73354,17 +73354,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -terser-webpack-plugin 5.3.9 - MIT -https://github.com/webpack-contrib/terser-webpack-plugin - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +terser-webpack-plugin 5.3.9 - MIT +https://github.com/webpack-contrib/terser-webpack-plugin + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -73385,16 +73385,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -text-table 0.2.0 - MIT -https://github.com/substack/text-table - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +text-table 0.2.0 - MIT +https://github.com/substack/text-table + + This software is released under the MIT license: Permission is hereby granted, free of charge, to any person obtaining a copy of @@ -73413,17 +73413,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -thunky 1.1.0 - MIT -https://github.com/mafintosh/thunky#readme - -Copyright (c) 2018 Mathias Buus - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +thunky 1.1.0 - MIT +https://github.com/mafintosh/thunky#readme + +Copyright (c) 2018 Mathias Buus + The MIT License (MIT) Copyright (c) 2018 Mathias Buus @@ -73445,17 +73445,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -tiny-invariant 1.3.1 - MIT -https://github.com/alexreardon/tiny-invariant#readme - -Copyright (c) 2019 Alexander Reardon - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +tiny-invariant 1.3.1 - MIT +https://github.com/alexreardon/tiny-invariant#readme + +Copyright (c) 2019 Alexander Reardon + MIT License Copyright (c) 2019 Alexander Reardon @@ -73476,17 +73476,17 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -tiny-warning 1.0.3 - MIT - - -Copyright (c) 2019 Alexander Reardon - +SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +tiny-warning 1.0.3 - MIT + + +Copyright (c) 2019 Alexander Reardon + MIT License Copyright (c) 2019 Alexander Reardon @@ -73507,18 +73507,18 @@ 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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -to-fast-properties 2.0.0 - MIT -https://github.com/sindresorhus/to-fast-properties#readme - -(c) Petka Antonov, John-David Dalton, Sindre Sorhus -Copyright (c) 2014 Petka Antonov 2015 Sindre Sorhus - +SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +to-fast-properties 2.0.0 - MIT +https://github.com/sindresorhus/to-fast-properties#readme + +(c) Petka Antonov, John-David Dalton, Sindre Sorhus +Copyright (c) 2014 Petka Antonov 2015 Sindre Sorhus + MIT License Copyright (c) 2014 Petka Antonov @@ -73529,18 +73529,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -toidentifier 1.0.1 - MIT -https://github.com/component/toidentifier#readme - -Copyright (c) 2016 Douglas Christopher Wilson -Copyright (c) 2016 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +toidentifier 1.0.1 - MIT +https://github.com/component/toidentifier#readme + +Copyright (c) 2016 Douglas Christopher Wilson +Copyright (c) 2016 Douglas Christopher Wilson + MIT License Copyright (c) 2016 Douglas Christopher Wilson @@ -73562,18 +73562,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -to-regex-range 5.0.1 - MIT -https://github.com/micromatch/to-regex-range - -Copyright (c) 2015-present, Jon Schlinkert -Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +to-regex-range 5.0.1 - MIT +https://github.com/micromatch/to-regex-range + +Copyright (c) 2015-present, Jon Schlinkert +Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert) + The MIT License (MIT) Copyright (c) 2015-present, Jon Schlinkert. @@ -73595,18 +73595,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -totalist 3.0.1 - MIT -https://github.com/lukeed/totalist#readme - -(c) Luke Edwards (https://lukeed.com) -Copyright (c) Luke Edwards (lukeed.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +totalist 3.0.1 - MIT +https://github.com/lukeed/totalist#readme + +(c) Luke Edwards (https://lukeed.com) +Copyright (c) Luke Edwards (lukeed.com) + The MIT License (MIT) Copyright (c) Luke Edwards (lukeed.com) @@ -73628,18 +73628,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -trim-lines 3.0.1 - MIT -https://github.com/wooorm/trim-lines#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +trim-lines 3.0.1 - MIT +https://github.com/wooorm/trim-lines#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + (The MIT License) Copyright (c) 2015 Titus Wormer @@ -73662,18 +73662,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -trough 2.1.0 - MIT -https://github.com/wooorm/trough#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +trough 2.1.0 - MIT +https://github.com/wooorm/trough#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -73695,18 +73695,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -typedarray-to-buffer 3.1.5 - MIT -http://feross.org/ - -Copyright (c) Feross Aboukhadijeh -Copyright (c) Feross Aboukhadijeh (http://feross.org) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +typedarray-to-buffer 3.1.5 - MIT +http://feross.org/ + +Copyright (c) Feross Aboukhadijeh +Copyright (c) Feross Aboukhadijeh (http://feross.org) + The MIT License (MIT) Copyright (c) Feross Aboukhadijeh @@ -73728,20 +73728,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -type-is 1.6.18 - MIT -https://github.com/jshttp/type-is#readme - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014-2015 Douglas Christopher Wilson -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014-2015 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +type-is 1.6.18 - MIT +https://github.com/jshttp/type-is#readme + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2015 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2015 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2014 Jonathan Ong @@ -73765,16 +73765,16 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -undici-types 5.26.5 - MIT -https://undici.nodejs.org/ - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +undici-types 5.26.5 - MIT +https://undici.nodejs.org/ + + MIT License Copyright (c) @@ -73783,17 +73783,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -unicode-canonical-property-names-ecmascript 2.0.0 - MIT -https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript - -Copyright Mathias Bynens - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +unicode-canonical-property-names-ecmascript 2.0.0 - MIT +https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -73814,17 +73814,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unicode-emoji-modifier-base 1.0.0 - MIT -https://github.com/mathiasbynens/unicode-emoji-modifier-base - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unicode-emoji-modifier-base 1.0.0 - MIT +https://github.com/mathiasbynens/unicode-emoji-modifier-base + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -73845,17 +73845,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unicode-match-property-ecmascript 2.0.0 - MIT -https://github.com/mathiasbynens/unicode-match-property-ecmascript - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unicode-match-property-ecmascript 2.0.0 - MIT +https://github.com/mathiasbynens/unicode-match-property-ecmascript + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -73876,17 +73876,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unicode-match-property-value-ecmascript 2.1.0 - MIT -https://github.com/mathiasbynens/unicode-match-property-value-ecmascript - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unicode-match-property-value-ecmascript 2.1.0 - MIT +https://github.com/mathiasbynens/unicode-match-property-value-ecmascript + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -73907,17 +73907,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unicode-property-aliases-ecmascript 2.1.0 - MIT -https://github.com/mathiasbynens/unicode-property-aliases-ecmascript - -Copyright Mathias Bynens - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unicode-property-aliases-ecmascript 2.1.0 - MIT +https://github.com/mathiasbynens/unicode-property-aliases-ecmascript + +Copyright Mathias Bynens + Copyright Mathias Bynens Permission is hereby granted, free of charge, to any person obtaining @@ -73938,19 +73938,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unified 11.0.4 - MIT -https://unifiedjs.com/ - -(c) Titus Wormer -(c) Titus Wormer (https://wooorm.com) -Copyright (c) 2015 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unified 11.0.4 - MIT +https://unifiedjs.com/ + +(c) Titus Wormer +(c) Titus Wormer (https://wooorm.com) +Copyright (c) 2015 Titus Wormer + (The MIT License) Copyright (c) 2015 Titus Wormer @@ -73972,17 +73972,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unique-string 3.0.0 - MIT -https://github.com/sindresorhus/unique-string#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unique-string 3.0.0 - MIT +https://github.com/sindresorhus/unique-string#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -73992,18 +73992,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unist-util-is 6.0.0 - MIT -https://github.com/syntax-tree/unist-util-is#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unist-util-is 6.0.0 - MIT +https://github.com/syntax-tree/unist-util-is#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + (The MIT license) Copyright (c) 2015 Titus Wormer @@ -74026,154 +74026,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unist-util-position 5.0.0 - MIT -https://github.com/syntax-tree/unist-util-position#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - -(The MIT License) - -Copyright (c) 2015 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unist-util-position-from-estree 2.0.0 - MIT -https://github.com/syntax-tree/unist-util-position-from-estree#readme - -(c) Titus Wormer -Copyright (c) 2021 Titus Wormer - -(The MIT License) - -Copyright (c) 2021 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unist-util-remove-position 5.0.0 - MIT -https://github.com/syntax-tree/unist-util-remove-position#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - -(The MIT License) - -Copyright (c) 2016 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unist-util-stringify-position 4.0.0 - MIT -https://github.com/syntax-tree/unist-util-stringify-position#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - -(The MIT License) - -Copyright (c) 2016 Titus Wormer - -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: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unist-util-visit 5.0.0 - MIT -https://github.com/syntax-tree/unist-util-visit#readme - -(c) Titus Wormer -Copyright (c) 2015 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unist-util-position 5.0.0 - MIT +https://github.com/syntax-tree/unist-util-position#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + (The MIT License) Copyright (c) 2015 Titus Wormer @@ -74196,18 +74060,86 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unist-util-position-from-estree 2.0.0 - MIT +https://github.com/syntax-tree/unist-util-position-from-estree#readme + +(c) Titus Wormer +Copyright (c) 2021 Titus Wormer + +(The MIT License) +Copyright (c) 2021 Titus Wormer ---------------------------------------------------------- +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -unist-util-visit-parents 6.0.1 - MIT -https://github.com/syntax-tree/unist-util-visit-parents#readme +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unist-util-remove-position 5.0.0 - MIT +https://github.com/syntax-tree/unist-util-remove-position#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + +(The MIT License) -(c) Titus Wormer Copyright (c) 2016 Titus Wormer +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: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unist-util-stringify-position 4.0.0 - MIT +https://github.com/syntax-tree/unist-util-stringify-position#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -74230,17 +74162,85 @@ 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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unist-util-visit 5.0.0 - MIT +https://github.com/syntax-tree/unist-util-visit#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + +(The MIT License) +Copyright (c) 2015 Titus Wormer ---------------------------------------------------------- +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: ---------------------------------------------------------- +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -universalify 2.0.1 - MIT -https://github.com/RyanZim/universalify#readme +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unist-util-visit-parents 6.0.1 - MIT +https://github.com/syntax-tree/unist-util-visit-parents#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + +(The MIT License) -Copyright (c) 2017, Ryan Zimmerman +Copyright (c) 2016 Titus Wormer + +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: +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +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. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +universalify 2.0.1 - MIT +https://github.com/RyanZim/universalify#readme + +Copyright (c) 2017, Ryan Zimmerman + (The MIT License) Copyright (c) 2017, Ryan Zimmerman @@ -74261,18 +74261,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -unpipe 1.0.0 - MIT -https://github.com/stream-utils/unpipe - -Copyright (c) 2015 Douglas Christopher Wilson -Copyright (c) 2015 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +unpipe 1.0.0 - MIT +https://github.com/stream-utils/unpipe + +Copyright (c) 2015 Douglas Christopher Wilson +Copyright (c) 2015 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2015 Douglas Christopher Wilson @@ -74295,17 +74295,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -update-browserslist-db 1.0.13 - MIT -https://github.com/browserslist/update-db#readme - -Copyright 2022 Andrey Sitnik and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +update-browserslist-db 1.0.13 - MIT +https://github.com/browserslist/update-db#readme + +Copyright 2022 Andrey Sitnik and other contributors + The MIT License (MIT) Copyright 2022 Andrey Sitnik and other contributors @@ -74326,17 +74326,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -url-loader 4.1.1 - MIT -https://github.com/webpack-contrib/url-loader - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +url-loader 4.1.1 - MIT +https://github.com/webpack-contrib/url-loader + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -74357,17 +74357,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -utila 0.4.0 - MIT -https://github.com/AriaMinaei/utila - -Copyright (c) 2014 Aria Minaei - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +utila 0.4.0 - MIT +https://github.com/AriaMinaei/utila + +Copyright (c) 2014 Aria Minaei + The MIT License (MIT) Copyright (c) 2014 Aria Minaei @@ -74388,17 +74388,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -util-deprecate 1.0.2 - MIT -https://github.com/TooTallNate/util-deprecate - -Copyright (c) 2014 Nathan Rajlich - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +util-deprecate 1.0.2 - MIT +https://github.com/TooTallNate/util-deprecate + +Copyright (c) 2014 Nathan Rajlich + (The MIT License) Copyright (c) 2014 Nathan Rajlich @@ -74423,19 +74423,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -utility-types 3.10.0 - MIT -https://github.com/piotrwitek/utility-types - -Copyright (c) 2016 Piotr Witek -Copyright (c) 2016 Piotr Witek (http://piotrwitek.github.io) -Copyright (c) 2016 Piotr Witek (http://piotrwitek.github.io) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +utility-types 3.10.0 - MIT +https://github.com/piotrwitek/utility-types + +Copyright (c) 2016 Piotr Witek +Copyright (c) 2016 Piotr Witek (http://piotrwitek.github.io) +Copyright (c) 2016 Piotr Witek (http://piotrwitek.github.io) + MIT License Copyright (c) 2016 Piotr Witek (http://piotrwitek.github.io) @@ -74457,18 +74457,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -utils-merge 1.0.1 - MIT -https://github.com/jaredhanson/utils-merge#readme - -Copyright (c) 2013-2017 Jared Hanson -Copyright (c) 2013-2017 Jared Hanson < http://jaredhanson.net/ (http://jaredhanson.net/)> - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +utils-merge 1.0.1 - MIT +https://github.com/jaredhanson/utils-merge#readme + +Copyright (c) 2013-2017 Jared Hanson +Copyright (c) 2013-2017 Jared Hanson < http://jaredhanson.net/ (http://jaredhanson.net/)> + The MIT License (MIT) Copyright (c) 2013-2017 Jared Hanson @@ -74489,19 +74489,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -uuid 8.3.2 - MIT -https://github.com/uuidjs/uuid#readme - -Copyright 2011, Sebastian Tschan https://blueimp.net -Copyright (c) 2010-2020 Robert Kieffer and other contributors -Copyright (c) Paul Johnston 1999 - 2009 Other contributors Greg Holt, Andrew Kepert, Ydnar, Lostinet - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +uuid 8.3.2 - MIT +https://github.com/uuidjs/uuid#readme + +Copyright 2011, Sebastian Tschan https://blueimp.net +Copyright (c) 2010-2020 Robert Kieffer and other contributors +Copyright (c) Paul Johnston 1999 - 2009 Other contributors Greg Holt, Andrew Kepert, Ydnar, Lostinet + The MIT License (MIT) Copyright (c) 2010-2020 Robert Kieffer and other contributors @@ -74511,17 +74511,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -value-equal 1.0.1 - MIT -https://github.com/mjackson/value-equal#readme - -Copyright (c) Michael Jackson 2016-2018 - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +value-equal 1.0.1 - MIT +https://github.com/mjackson/value-equal#readme + +Copyright (c) Michael Jackson 2016-2018 + MIT License Copyright (c) Michael Jackson 2016-2018 @@ -74543,17 +74543,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -vary 1.1.2 - MIT -https://github.com/jshttp/vary#readme - -Copyright (c) 2014-2017 Douglas Christopher Wilson - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +vary 1.1.2 - MIT +https://github.com/jshttp/vary#readme + +Copyright (c) 2014-2017 Douglas Christopher Wilson + (The MIT License) Copyright (c) 2014-2017 Douglas Christopher Wilson @@ -74576,20 +74576,20 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -vfile 6.0.1 - MIT -https://github.com/vfile/vfile#readme - -(c) Titus Wormer -Copyright (c) 2013 James Halliday -Copyright Joyent, Inc. and other Node contributors -Copyright (c) 2015 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +vfile 6.0.1 - MIT +https://github.com/vfile/vfile#readme + +(c) Titus Wormer +Copyright (c) 2013 James Halliday +Copyright Joyent, Inc. and other Node contributors +Copyright (c) 2015 Titus Wormer + (The MIT License) Copyright (c) 2015 Titus Wormer @@ -74611,18 +74611,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -vfile-location 5.0.2 - MIT -https://github.com/vfile/vfile-location#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +vfile-location 5.0.2 - MIT +https://github.com/vfile/vfile-location#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -74645,18 +74645,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -vfile-message 4.0.2 - MIT -https://github.com/vfile/vfile-message#readme - -(c) Titus Wormer -Copyright (c) 2017 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +vfile-message 4.0.2 - MIT +https://github.com/vfile/vfile-message#readme + +(c) Titus Wormer +Copyright (c) 2017 Titus Wormer + (The MIT License) Copyright (c) 2017 Titus Wormer @@ -74679,17 +74679,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -watchpack 2.4.0 - MIT -https://github.com/webpack/watchpack - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +watchpack 2.4.0 - MIT +https://github.com/webpack/watchpack + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -74710,17 +74710,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -wbuf 1.7.3 - MIT -https://github.com/indutny/wbuf - -Copyright Fedor Indutny, 2014 - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +wbuf 1.7.3 - MIT +https://github.com/indutny/wbuf + +Copyright Fedor Indutny, 2014 + MIT License Copyright (c) @@ -74729,18 +74729,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -web-namespaces 2.0.1 - MIT -https://github.com/wooorm/web-namespaces#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +web-namespaces 2.0.1 - MIT +https://github.com/wooorm/web-namespaces#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -74763,17 +74763,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -webpack 5.89.0 - MIT -https://github.com/webpack/webpack - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +webpack 5.89.0 - MIT +https://github.com/webpack/webpack + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -74794,17 +74794,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -webpackbar 5.0.2 - MIT -https://github.com/unjs/webpackbar#readme - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +webpackbar 5.0.2 - MIT +https://github.com/unjs/webpackbar#readme + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -74825,23 +74825,23 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -webpack-bundle-analyzer 4.10.1 - MIT -https://github.com/webpack-contrib/webpack-bundle-analyzer - -Copyright (c) 2018 Jed Watson -(c) Michel Weststrate 2015 - 2018 -(c) Michel Weststrate 2015 - 2020 -Copyright 2002-2021, Carrot Search s.c -Copyright (c) 2014-2017, Jon Schlinkert -Copyright JS Foundation and other contributors -Copyright (c) 2017-present by Andrea Giammarchi - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +webpack-bundle-analyzer 4.10.1 - MIT +https://github.com/webpack-contrib/webpack-bundle-analyzer + +Copyright (c) 2018 Jed Watson +(c) Michel Weststrate 2015 - 2018 +(c) Michel Weststrate 2015 - 2020 +Copyright 2002-2021, Carrot Search s.c +Copyright (c) 2014-2017, Jon Schlinkert +Copyright JS Foundation and other contributors +Copyright (c) 2017-present by Andrea Giammarchi + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -74862,17 +74862,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -webpack-dev-middleware 5.3.4 - MIT -https://github.com/webpack/webpack-dev-middleware - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +webpack-dev-middleware 5.3.4 - MIT +https://github.com/webpack/webpack-dev-middleware + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -74893,17 +74893,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -webpack-dev-server 4.15.1 - MIT -https://github.com/webpack/webpack-dev-server#readme - -Copyright JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +webpack-dev-server 4.15.1 - MIT +https://github.com/webpack/webpack-dev-server#readme + +Copyright JS Foundation and other contributors + Copyright JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining @@ -74924,17 +74924,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -webpack-merge 5.10.0 - MIT -https://github.com/survivejs/webpack-merge - -Copyright (c) 2015 Juho Vepsalainen - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +webpack-merge 5.10.0 - MIT +https://github.com/survivejs/webpack-merge + +Copyright (c) 2015 Juho Vepsalainen + Copyright (c) 2015 Juho Vepsalainen Permission is hereby granted, free of charge, to any person obtaining @@ -74955,17 +74955,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -webpack-sources 3.2.3 - MIT -https://github.com/webpack/webpack-sources#readme - -Copyright (c) 2017 JS Foundation and other contributors - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +webpack-sources 3.2.3 - MIT +https://github.com/webpack/webpack-sources#readme + +Copyright (c) 2017 JS Foundation and other contributors + MIT License Copyright (c) 2017 JS Foundation and other contributors @@ -74987,17 +74987,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -widest-line 4.0.1 - MIT -https://github.com/sindresorhus/widest-line#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +widest-line 4.0.1 - MIT +https://github.com/sindresorhus/widest-line#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -75007,18 +75007,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -wildcard 2.0.1 - MIT -https://github.com/DamonOehlman/wildcard#readme - -Copyright (c) 2023 Damon Oehlman -Copyright (c) 2023 Damon Oehlman - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +wildcard 2.0.1 - MIT +https://github.com/DamonOehlman/wildcard#readme + +Copyright (c) 2023 Damon Oehlman +Copyright (c) 2023 Damon Oehlman + The MIT License (MIT) Copyright (c) 2023 Damon Oehlman <damon.oehlman@gmail.com> @@ -75040,17 +75040,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -wrap-ansi 8.1.0 - MIT -https://github.com/chalk/wrap-ansi#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +wrap-ansi 8.1.0 - MIT +https://github.com/chalk/wrap-ansi#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -75060,17 +75060,17 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ws 7.5.9 - MIT -https://github.com/websockets/ws - -Copyright (c) 2011 Einar Otto Stangvik - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ws 7.5.9 - MIT +https://github.com/websockets/ws + +Copyright (c) 2011 Einar Otto Stangvik + The MIT License (MIT) Copyright (c) 2011 Einar Otto Stangvik @@ -75092,19 +75092,19 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -ws 8.15.1 - MIT -https://github.com/websockets/ws - -Copyright (c) 2016 Luigi Pinca and contributors -Copyright (c) 2013 Arnout Kazemier and contributors -Copyright (c) 2011 Einar Otto Stangvik - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +ws 8.15.1 - MIT +https://github.com/websockets/ws + +Copyright (c) 2016 Luigi Pinca and contributors +Copyright (c) 2013 Arnout Kazemier and contributors +Copyright (c) 2011 Einar Otto Stangvik + Copyright (c) 2011 Einar Otto Stangvik Copyright (c) 2013 Arnout Kazemier and contributors Copyright (c) 2016 Luigi Pinca and contributors @@ -75125,17 +75125,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -xdg-basedir 5.1.0 - MIT -https://github.com/sindresorhus/xdg-basedir#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +xdg-basedir 5.1.0 - MIT +https://github.com/sindresorhus/xdg-basedir#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -75145,49 +75145,49 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -xml-js 1.6.11 - MIT -https://github.com/nashwaan/xml-js#readme - -Copyright (c) 2016-2017 Yousuf Almarzooqi -Copyright Joyent, Inc. and other Node contributors. - -The MIT License (MIT) - -Copyright (c) 2016-2017 Yousuf Almarzooqi - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - ---------------------------------------------------------- - ---------------------------------------------------------- - -yocto-queue 1.0.0 - MIT -https://github.com/sindresorhus/yocto-queue#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +xml-js 1.6.11 - MIT +https://github.com/nashwaan/xml-js#readme + +Copyright (c) 2016-2017 Yousuf Almarzooqi +Copyright Joyent, Inc. and other Node contributors. + +The MIT License (MIT) + +Copyright (c) 2016-2017 Yousuf Almarzooqi + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + +--------------------------------------------------------- + +--------------------------------------------------------- + +yocto-queue 1.0.0 - MIT +https://github.com/sindresorhus/yocto-queue#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -75197,18 +75197,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -zwitch 2.0.4 - MIT -https://github.com/wooorm/zwitch#readme - -(c) Titus Wormer -Copyright (c) 2016 Titus Wormer - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +zwitch 2.0.4 - MIT +https://github.com/wooorm/zwitch#readme + +(c) Titus Wormer +Copyright (c) 2016 Titus Wormer + (The MIT License) Copyright (c) 2016 Titus Wormer @@ -75231,17 +75231,17 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -type-fest 1.4.0 - MIT OR (CC0-1.0 AND MIT) -https://github.com/sindresorhus/type-fest#readme - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +type-fest 1.4.0 - MIT OR (CC0-1.0 AND MIT) +https://github.com/sindresorhus/type-fest#readme + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) @@ -75251,18 +75251,18 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -opener 1.5.2 - MIT OR WTFPL OR (MIT AND WTFPL) -https://github.com/domenic/opener#readme - -Copyright (c) 2004 Sam Hocevar -Copyright (c) 2012-2020 Domenic Denicola - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +opener 1.5.2 - MIT OR WTFPL OR (MIT AND WTFPL) +https://github.com/domenic/opener#readme + +Copyright (c) 2004 Sam Hocevar +Copyright (c) 2012-2020 Domenic Denicola + Dual licensed under WTFPL and MIT: --- @@ -75310,18 +75310,18 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -path-is-inside 1.0.2 - MIT OR WTFPL OR (MIT AND WTFPL) -https://github.com/domenic/path-is-inside#readme - -Copyright (c) 2004 Sam Hocevar -Copyright (c) 2013-2016 Domenic Denicola - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +path-is-inside 1.0.2 - MIT OR WTFPL OR (MIT AND WTFPL) +https://github.com/domenic/path-is-inside#readme + +Copyright (c) 2004 Sam Hocevar +Copyright (c) 2013-2016 Domenic Denicola + Dual licensed under WTFPL and MIT: --- @@ -75369,198 +75369,24 @@ 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. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fgo-sql-driver/mysql v1.6.0 - MPL-2.0 - - -Copyright 2012 The Go-MySQL-Driver Authors -Copyright 2013 The Go-MySQL-Driver Authors -Copyright 2014 The Go-MySQL-Driver Authors -Copyright 2016 The Go-MySQL-Driver Authors -Copyright 2017 The Go-MySQL-Driver Authors -Copyright 2018 The Go-MySQL-Driver Authors -Copyright 2019 The Go-MySQL-Driver Authors -Copyright 2020 The Go-MySQL-Driver Authors - -Mozilla Public License Version 2.0 - - 1. Definitions - - 1.1. "Contributor" means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. - - 1.2. "Contributor Version" means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor's Contribution. - - 1.3. "Contribution" means Covered Software of a particular Contributor. - - 1.4. "Covered Software" means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. - - 1.5. "Incompatible With Secondary Licenses" means - - (a) that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or - - (b) that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License. - - 1.6. "Executable Form" means any form of the work other than Source Code Form. - - 1.7. "Larger Work" means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software. - - 1.8. "License" means this document. - - 1.9. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. - - 1.10. "Modifications" means any of the following: - - (a) any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or - - (b) any new file in Source Code Form that contains any Covered Software. - - 1.11. "Patent Claims" of a Contributor means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. - - 1.12. "Secondary License" means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. - - 1.13. "Source Code Form" means the form of the work preferred for making modifications. - - 1.14. "You" (or "Your") means an individual or a legal entity exercising rights under this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - - 2. License Grants and Conditions - - 2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: - - (a) under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and - - (b) under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version. - - 2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution. - - 2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor: - - (a) for any code that a Contributor has removed from Covered Software; or - - (b) for infringements caused by: (i) Your and any other third party's modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or - - (c) under Patent Claims infringed by Covered Software in the absence of its Contributions. - - This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4). - - 2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3). - - 2.5. Representation - - Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License. - - 2.6. Fair Use - - This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents. - - 2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1. - - 3. Responsibilities - - 3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients' rights in the Source Code Form. - - 3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - (a) such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and - - (b) You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients' rights in the Source Code Form under this License. - - 3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s). - - 3.4. Notices - - You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies. - - 3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. - - 4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - - 5. Termination - - 5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice. - - 5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate. - - 5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination. - - 6. Disclaimer of Warranty - - Covered Software is provided under this License on an "as is" basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer. - - 7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. - - 8. Litigation - - Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party's ability to bring cross-claims or counter-claims. - - 9. Miscellaneous - - This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor. - - 10. Versions of the License - - 10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number. - - 10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward. - - 10.3. Modified Versions - - If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License). - - 10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses - - If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached. Exhibit A - Source Code Form License Notice - -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice - -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fhashicorp%2fconsul/api v1.26.1 - MPL-2.0 - - -Copyright (c) HashiCorp, Inc. -Copyright (c) 2020 HashiCorp, Inc. - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fgo-sql-driver/mysql v1.6.0 - MPL-2.0 + + +Copyright 2012 The Go-MySQL-Driver Authors +Copyright 2013 The Go-MySQL-Driver Authors +Copyright 2014 The Go-MySQL-Driver Authors +Copyright 2016 The Go-MySQL-Driver Authors +Copyright 2017 The Go-MySQL-Driver Authors +Copyright 2018 The Go-MySQL-Driver Authors +Copyright 2019 The Go-MySQL-Driver Authors +Copyright 2020 The Go-MySQL-Driver Authors + Mozilla Public License Version 2.0 1. Definitions @@ -75723,18 +75549,18 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp%2Fconsul/sdk v0.15.0 - MPL-2.0 - - -Copyright (c) HashiCorp, Inc. -Copyright (c) 2020 HashiCorp, Inc. - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fhashicorp%2fconsul/api v1.26.1 - MPL-2.0 + + +Copyright (c) HashiCorp, Inc. +Copyright (c) 2020 HashiCorp, Inc. + Mozilla Public License Version 2.0 1. Definitions @@ -75897,17 +75723,18 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fhashicorp%2fgo-immutable-radix/v2 v2.1.0 - MPL-2.0 - - -Copyright (c) 2015 HashiCorp, Inc. - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp%2Fconsul/sdk v0.15.0 - MPL-2.0 + + +Copyright (c) HashiCorp, Inc. +Copyright (c) 2020 HashiCorp, Inc. + Mozilla Public License Version 2.0 1. Definitions @@ -76070,20 +75897,17 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2fhashicorp%2fgolang-lru/v2 v2.0.7 - MPL-2.0 - - -Copyright (c) HashiCorp, Inc. -Copyright 2009 The Go Authors -Copyright (c) 2009 The Go Authors -Copyright (c) 2014 HashiCorp, Inc. - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fhashicorp%2fgo-immutable-radix/v2 v2.1.0 - MPL-2.0 + + +Copyright (c) 2015 HashiCorp, Inc. + Mozilla Public License Version 2.0 1. Definitions @@ -76246,16 +76070,20 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/errwrap v1.1.0 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fhashicorp%2fgolang-lru/v2 v2.0.7 - MPL-2.0 + + +Copyright (c) HashiCorp, Inc. +Copyright 2009 The Go Authors +Copyright (c) 2009 The Go Authors +Copyright (c) 2014 HashiCorp, Inc. + Mozilla Public License Version 2.0 1. Definitions @@ -76418,16 +76246,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-cleanhttp v0.5.2 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/errwrap v1.1.0 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -76590,16 +76418,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-immutable-radix v1.3.1 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-cleanhttp v0.5.2 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -76762,16 +76590,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/golang-lru v0.5.4 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-immutable-radix v1.3.1 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -76934,16 +76762,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-multierror v1.1.1 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/golang-lru v0.5.4 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -77106,16 +76934,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-retryablehttp v0.5.3 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-multierror v1.1.1 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -77278,16 +77106,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-rootcerts v1.0.2 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-retryablehttp v0.5.3 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -77450,16 +77278,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-sockaddr v1.0.2 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-rootcerts v1.0.2 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -77622,17 +77450,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-uuid v1.0.3 - MPL-2.0 - - -Copyright (c) 2015-2022 HashiCorp, Inc. - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-sockaddr v1.0.2 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -77795,16 +77622,17 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/go-version v1.2.1 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-uuid v1.0.3 - MPL-2.0 + + +Copyright (c) 2015-2022 HashiCorp, Inc. + Mozilla Public License Version 2.0 1. Definitions @@ -77967,16 +77795,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/hcl v1.0.1-vault-5 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/go-version v1.2.1 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -78139,16 +77967,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/logutils v1.0.0 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/hcl v1.0.1-vault-5 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -78311,17 +78139,16 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/memberlist v0.5.0 - MPL-2.0 - - -Copyright 2017 Google Inc. - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/logutils v1.0.0 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -78484,18 +78311,17 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fhashicorp/serf v0.10.1 - MPL-2.0 - - -Copyright Hashicorp 2013 -(c) 2009-2013 Torstein Honsi - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/memberlist v0.5.0 - MPL-2.0 + + +Copyright 2017 Google Inc. + Mozilla Public License Version 2.0 1. Definitions @@ -78658,16 +78484,18 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fmitchellh/cli v1.1.5 - MPL-2.0 - - - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fhashicorp/serf v0.10.1 - MPL-2.0 + + +Copyright Hashicorp 2013 +(c) 2009-2013 Torstein Honsi + Mozilla Public License Version 2.0 1. Definitions @@ -78830,16 +78658,188 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fmitchellh/cli v1.1.5 - MPL-2.0 + + + +Mozilla Public License Version 2.0 + + 1. Definitions + + 1.1. "Contributor" means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. + + 1.2. "Contributor Version" means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor's Contribution. + + 1.3. "Contribution" means Covered Software of a particular Contributor. + + 1.4. "Covered Software" means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. + + 1.5. "Incompatible With Secondary Licenses" means + + (a) that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License. + + 1.6. "Executable Form" means any form of the work other than Source Code Form. + + 1.7. "Larger Work" means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software. + + 1.8. "License" means this document. + + 1.9. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. + + 1.10. "Modifications" means any of the following: + + (a) any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or + + (b) any new file in Source Code Form that contains any Covered Software. + + 1.11. "Patent Claims" of a Contributor means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. + + 1.12. "Secondary License" means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. + + 1.13. "Source Code Form" means the form of the work preferred for making modifications. + + 1.14. "You" (or "Your") means an individual or a legal entity exercising rights under this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. + + 2. License Grants and Conditions + + 2.1. Grants + + Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: + + (a) under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and + + (b) under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version. + + 2.2. Effective Date + + The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution. + + 2.3. Limitations on Grant Scope + + The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor: + + (a) for any code that a Contributor has removed from Covered Software; or + + (b) for infringements caused by: (i) Your and any other third party's modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or + + (c) under Patent Claims infringed by Covered Software in the absence of its Contributions. + + This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4). + + 2.4. Subsequent Licenses + + No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3). + + 2.5. Representation + + Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License. + + 2.6. Fair Use + + This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents. + + 2.7. Conditions + + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1. + + 3. Responsibilities + + 3.1. Distribution of Source Form + + All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients' rights in the Source Code Form. + + 3.2. Distribution of Executable Form + + If You distribute Covered Software in Executable Form then: + + (a) such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and + + (b) You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients' rights in the Source Code Form under this License. + + 3.3. Distribution of a Larger Work + + You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s). + + 3.4. Notices + + You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies. + + 3.5. Application of Additional Terms + + You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. + + 4. Inability to Comply Due to Statute or Regulation + + If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. + + 5. Termination + + 5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice. + + 5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate. + + 5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination. + + 6. Disclaimer of Warranty + + Covered Software is provided under this License on an "as is" basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer. ---------------------------------------------------------- + 7. Limitation of Liability ---------------------------------------------------------- + Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. -github.com%2fveraison/go-cose v1.0.0 - MPL-2.0 + 8. Litigation + Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party's ability to bring cross-claims or counter-claims. + 9. Miscellaneous + + This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor. + + 10. Versions of the License + + 10.1. New Versions + + Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number. + + 10.2. Effect of New Versions + + You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward. + + 10.3. Modified Versions + + If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License). + + 10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses + + If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached. Exhibit A - Source Code Form License Notice + +This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2fveraison/go-cose v1.0.0 - MPL-2.0 + + + Mozilla Public License Version 2.0 1. Definitions @@ -79002,23 +79002,23 @@ You may add additional accurate notices of copyright ownership. Exhibit B - "Incompatible With Secondary Licenses" Notice -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. - ---------------------------------------------------------- - ---------------------------------------------------------- - -argparse 2.0.1 - Python-2.0 -https://github.com/nodeca/argparse#readme - -Copyright (c) 2020 argparse.js authors -Copyright (c) 1999-2001 Gregory P. Ward -Copyright (c) 2010-2020 Python Software Foundation -Copyright (c) 2002, 2003 Python Software Foundation -Copyright (c) 1995-2001 Corporation for National Research Initiatives -Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands -Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Python Software Foundation - +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. + +--------------------------------------------------------- + +--------------------------------------------------------- + +argparse 2.0.1 - Python-2.0 +https://github.com/nodeca/argparse#readme + +Copyright (c) 2020 argparse.js authors +Copyright (c) 1999-2001 Gregory P. Ward +Copyright (c) 2010-2020 Python Software Foundation +Copyright (c) 2002, 2003 Python Software Foundation +Copyright (c) 1995-2001 Corporation for National Research Initiatives +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands +Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Python Software Foundation + A. HISTORY OF THE SOFTWARE ========================== @@ -79273,16 +79273,16 @@ FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ---------------------------------------------------------- - ---------------------------------------------------------- - -fs-monkey 1.0.5 - Unlicense -https://github.com/streamich/fs-monkey#readme - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +fs-monkey 1.0.5 - Unlicense +https://github.com/streamich/fs-monkey#readme + + This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or @@ -79307,16 +79307,16 @@ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. For more information, please refer to - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fnelsam%2Fhel/v2 v2.3.3 - Unlicense - - - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fnelsam%2Fhel/v2 v2.3.3 - Unlicense + + + This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. @@ -79327,16 +79327,16 @@ successors. We intend this dedication to be an overt act of relinquishment in pe 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 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. -For more information, please refer to - ---------------------------------------------------------- - ---------------------------------------------------------- - -memfs 3.5.3 - Unlicense -https://github.com/streamich/memfs#readme - - +For more information, please refer to + +--------------------------------------------------------- + +--------------------------------------------------------- + +memfs 3.5.3 - Unlicense +https://github.com/streamich/memfs#readme + + This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or @@ -79361,18 +79361,18 @@ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. For more information, please refer to - - ---------------------------------------------------------- - ---------------------------------------------------------- - -github.com%2Fbugsnag/osext v0.0.0-20130617224835-0dd3f918b21b - Zlib - - -Copyright 2012 The Go Authors -Copyright (c) 2012 Daniel Theophanes - + + +--------------------------------------------------------- + +--------------------------------------------------------- + +github.com%2Fbugsnag/osext v0.0.0-20130617224835-0dd3f918b21b - Zlib + + +Copyright 2012 The Go Authors +Copyright (c) 2012 Daniel Theophanes + zlib License Copyright (c) This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. @@ -79383,7 +79383,7 @@ Permission is granted to anyone to use this software for any purpose, including 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - ---------------------------------------------------------- - + 3. This notice may not be removed or altered from any source distribution. + +--------------------------------------------------------- + diff --git a/SUPPORT.md b/SUPPORT.md index b7c2dba39e..4e1a424853 100644 --- a/SUPPORT.md +++ b/SUPPORT.md @@ -1,9 +1,9 @@ -# Support - -## How to file issues and get help - -This project uses GitHub Issues to track bugs and feature requests. Please search the existing issues before filing new issues to avoid duplicates. For new issues, file your bug or feature request as a new Issue. - -## Microsoft Support Policy - -Support for this project is limited to the resources listed above. +# Support + +## How to file issues and get help + +This project uses GitHub Issues to track bugs and feature requests. Please search the existing issues before filing new issues to avoid duplicates. For new issues, file your bug or feature request as a new Issue. + +## Microsoft Support Policy + +Support for this project is limited to the resources listed above. diff --git a/controller/Dockerfile.windows-native b/controller/Dockerfile.windows-native index ce9e16a0b4..c04687b53b 100644 --- a/controller/Dockerfile.windows-native +++ b/controller/Dockerfile.windows-native @@ -3,7 +3,7 @@ # buildx targets, and this one requires legacy build. # Maybe one day: https://github.com/moby/buildkit/issues/616 ARG BUILDER_IMAGE -FROM --platform=windows/amd64 mcr.microsoft.com/oss/go/microsoft/golang:1.22.2-windowsservercore-ltsc2022 as builder +FROM --platform=windows/amd64 mcr.microsoft.com/oss/go/microsoft/golang:1.22-windowsservercore-ltsc2022 as builder WORKDIR C:\\retina COPY go.mod . COPY go.sum . diff --git a/pkg/metrics/types_linux.go b/pkg/metrics/types_linux.go index f0797ac638..e607883e9a 100644 --- a/pkg/metrics/types_linux.go +++ b/pkg/metrics/types_linux.go @@ -53,6 +53,8 @@ func (d DropReasonType) String() string { return "TCP_CLOSE_BASIC" case CONNTRACK_ADD_DROP: return "CONNTRACK_ADD_DROP" + case UNKNOWN_DROP: + return "UNKNOWN_DROP" default: return "UNKNOWN_DROP" } diff --git a/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go b/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go index b47e871e21..2b40a4493b 100644 --- a/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go +++ b/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go @@ -51,11 +51,11 @@ func (p *Plugin) Name() string { return "pktmon" } -type pktMonClient struct { +type Client struct { observerv1.ObserverClient } -func NewClient() (*pktMonClient, error) { +func NewClient() (*Client, error) { retryPolicy := `{ "methodConfig": [{ "waitForReady": true, @@ -74,7 +74,7 @@ func NewClient() (*pktMonClient, error) { return nil, fmt.Errorf("failed to dial pktmon server: %w", err) } - return &pktMonClient{observerv1.NewObserverClient(conn)}, nil + return &Client{observerv1.NewObserverClient(conn)}, nil } func (p *Plugin) RunPktMonServer() error { @@ -195,22 +195,20 @@ func (p *Plugin) SetupChannel(ch chan *v1.Event) error { return nil } -func New(cfg *kcfg.Config) api.Plugin { +func New(_ *kcfg.Config) api.Plugin { return &Plugin{ l: log.Logger().Named(Name), } } func (p *Plugin) Stop() error { - // p.pktmonCmd.Wait() - // p.stdWriter.Close() return nil } -func (p *Plugin) Compile(ctx context.Context) error { +func (p *Plugin) Compile(_ context.Context) error { return nil } -func (p *Plugin) Generate(ctx context.Context) error { +func (p *Plugin) Generate(_ context.Context) error { return nil } diff --git a/pkg/utils/flow_utils.go b/pkg/utils/flow_utils.go index 445616d813..d8e6736ec1 100644 --- a/pkg/utils/flow_utils.go +++ b/pkg/utils/flow_utils.go @@ -147,7 +147,7 @@ func AddTCPFlags(f *flow.Flow, syn, ack, fin, rst, psh, urg uint16) { } } -func AddTcpFlagsBool(f *flow.Flow, syn, ack, fin, rst, psh, urg bool) { +func AddTCPFlagsBool(f *flow.Flow, syn, ack, fin, rst, psh, urg bool) { if f.GetL4().GetTCP() == nil { return } diff --git a/pkg/utils/utils_windows.go b/pkg/utils/utils_windows.go index 606bebceb4..975ea4e6e5 100644 --- a/pkg/utils/utils_windows.go +++ b/pkg/utils/utils_windows.go @@ -3,16 +3,12 @@ package utils import ( - "fmt" - "github.com/cilium/cilium/api/v1/flow" ) func GetDropReasonDesc(dr DropReason) flow.DropReason { - fmt.Printf("getting drop reason description for %v\n", dr) switch dr { //nolint:exhaustive // We are handling all the cases. case DropReason_Drop_INET_FinWait2: - fmt.Printf("setting drop as %v\n", flow.DropReason_UNKNOWN_CONNECTION_TRACKING_STATE) return flow.DropReason_UNKNOWN_CONNECTION_TRACKING_STATE default: return flow.DropReason_DROP_REASON_UNKNOWN diff --git a/windows/setkubeconfigpath.ps1 b/windows/setkubeconfigpath.ps1 index f2aa99e1e3..38ec3440b2 100644 --- a/windows/setkubeconfigpath.ps1 +++ b/windows/setkubeconfigpath.ps1 @@ -1,11 +1,11 @@ -# pull the server value from the kubeconfig on host to construct our own kubeconfig, but using service principal settings -# this is required to build a kubeconfig using the kubeconfig on disk in c:\k, and the service principle granted in the container mount, to generate clientset -$cpEndpoint = Get-Content C:\k\config | ForEach-Object -Process {if($_.Contains("server:")) {$_.Trim().Split()[1]}} -$token = Get-Content -Path $env:CONTAINER_SANDBOX_MOUNT_POINT\var\run\secrets\kubernetes.io\serviceaccount\token -$ca = Get-Content -Raw -Path $env:CONTAINER_SANDBOX_MOUNT_POINT\var\run\secrets\kubernetes.io\serviceaccount\ca.crt -$caBase64 = [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($ca)) -$server = "server: $cpEndpoint" -(Get-Content $env:CONTAINER_SANDBOX_MOUNT_POINT\kubeconfigtemplate.yaml). - replace("", $caBase64). - replace("", $server.Trim()). - replace("", $token) | Set-Content $env:CONTAINER_SANDBOX_MOUNT_POINT\kubeconfig -Force +# pull the server value from the kubeconfig on host to construct our own kubeconfig, but using service principal settings +# this is required to build a kubeconfig using the kubeconfig on disk in c:\k, and the service principle granted in the container mount, to generate clientset +$cpEndpoint = Get-Content C:\k\config | ForEach-Object -Process {if($_.Contains("server:")) {$_.Trim().Split()[1]}} +$token = Get-Content -Path $env:CONTAINER_SANDBOX_MOUNT_POINT\var\run\secrets\kubernetes.io\serviceaccount\token +$ca = Get-Content -Raw -Path $env:CONTAINER_SANDBOX_MOUNT_POINT\var\run\secrets\kubernetes.io\serviceaccount\ca.crt +$caBase64 = [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($ca)) +$server = "server: $cpEndpoint" +(Get-Content $env:CONTAINER_SANDBOX_MOUNT_POINT\kubeconfigtemplate.yaml). + replace("", $caBase64). + replace("", $server.Trim()). + replace("", $token) | Set-Content $env:CONTAINER_SANDBOX_MOUNT_POINT\kubeconfig -Force From e53c80a1fa5f704d2c54b87cbc190aaca5c40092 Mon Sep 17 00:00:00 2001 From: Mathew Merrick Date: Tue, 9 Jul 2024 11:34:17 -0700 Subject: [PATCH 12/13] drop reason desc fix --- pkg/plugin/windows/pktmon/pktmon_plugin_windows.go | 2 +- pkg/utils/common.go | 1 - pkg/utils/flow_utils.go | 3 ++- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go b/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go index 2b40a4493b..91da5df447 100644 --- a/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go +++ b/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go @@ -148,7 +148,7 @@ func (p *Plugin) Start(ctx context.Context) error { fl := event.GetFlow() if fl == nil { - p.l.Error("received nil flow") + p.l.Error("received nil flow, flow proto mismatch from client/server?") continue } diff --git a/pkg/utils/common.go b/pkg/utils/common.go index d5be149099..aef4de75aa 100644 --- a/pkg/utils/common.go +++ b/pkg/utils/common.go @@ -50,7 +50,6 @@ func Retry(f func() error, retry int) (err error) { return nil } t := int64(math.Pow(2, float64(i))) - fmt.Printf("failed with %v, retrying in %d seconds...\n", err, t) time.Sleep(time.Duration(t) * time.Second) } return err diff --git a/pkg/utils/flow_utils.go b/pkg/utils/flow_utils.go index d8e6736ec1..194ae3e9c4 100644 --- a/pkg/utils/flow_utils.go +++ b/pkg/utils/flow_utils.go @@ -286,11 +286,12 @@ func AddDropReason(f *flow.Flow, meta *RetinaMetadata, dropReason uint32) { // Retina drop reasons are different from the drop reasons available in flow library. // We map the ones available in flow library to the ones available in Retina. // Rest are set to UNKNOWN. The details are added in the metadata. + f.DropReasonDesc = GetDropReasonDesc(meta.GetDropReason()) + f.EventType = &flow.CiliumEventType{ Type: int32(api.MessageTypeDrop), SubType: int32(f.GetDropReasonDesc()), // This is the drop reason. } - f.DropReasonDesc = GetDropReasonDesc(meta.GetDropReason()) } func DropReasonDescription(f *flow.Flow) string { From da0410c37f25e19c765469f45fbfc6983811e355 Mon Sep 17 00:00:00 2001 From: Mathew Merrick Date: Thu, 18 Jul 2024 10:30:40 -0700 Subject: [PATCH 13/13] feedback --- Makefile | 2 +- pkg/module/metrics/metrics_module.go | 3 +- .../windows/pktmon/pktmon_plugin_windows.go | 143 +++++++++++------- 3 files changed, 88 insertions(+), 60 deletions(-) diff --git a/Makefile b/Makefile index a35a0dfcf9..fb3c46e423 100644 --- a/Makefile +++ b/Makefile @@ -454,6 +454,7 @@ helm-install-advanced-local-context: manifests helm-install-hubble: helm upgrade --install retina ./deploy/hubble/manifests/controller/helm/retina/ \ --namespace kube-system \ + --set os.windows=true \ --set operator.enabled=true \ --set operator.repository=$(IMAGE_REGISTRY)/$(RETINA_OPERATOR_IMAGE) \ --set operator.tag=$(HELM_IMAGE_TAG) \ @@ -528,4 +529,3 @@ quick-deploy-hubble: .PHONY: simplify-dashboards simplify-dashboards: cd deploy/legacy/graphana/dashboards && go test . -tags=dashboard,simplifydashboard -v && cd $(REPO_ROOT) - diff --git a/pkg/module/metrics/metrics_module.go b/pkg/module/metrics/metrics_module.go index 9fbb7af423..2e193ad8f1 100644 --- a/pkg/module/metrics/metrics_module.go +++ b/pkg/module/metrics/metrics_module.go @@ -31,6 +31,7 @@ const ( tcp string = "tcp" nodeApiserver string = "node_apiserver" dns string = "dns" + pktmon string = "pktmon" metricModuleReq filtermanager.Requestor = "metricModule" interval time.Duration = 1 * time.Second @@ -237,7 +238,7 @@ func (m *Module) updateMetricsContexts(spec *api.MetricsSpec) { if lm != nil { m.registry[nodeApiserver] = lm } - case strings.Contains(ctxOption.MetricName, dns): + case strings.Contains(ctxOption.MetricName, dns) || strings.Contains(ctxOption.MetricName, pktmon): dm := NewDNSMetrics(&ctxOption, m.l, ctxType) if dm != nil { m.registry[ctxOption.MetricName] = dm diff --git a/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go b/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go index 91da5df447..d7e9bc8bd6 100644 --- a/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go +++ b/pkg/plugin/windows/pktmon/pktmon_plugin_windows.go @@ -2,6 +2,7 @@ package pktmon import ( "context" + "encoding/json" "errors" "fmt" "os" @@ -26,7 +27,7 @@ var ( ErrNilEnricher = errors.New("enricher is nil") ErrUnexpectedExit = errors.New("unexpected exit") - socket = "/tmp/retina-pktmon.sock" + socket = "/temp/retina-pktmon.sock" ) const ( @@ -56,20 +57,29 @@ type Client struct { } func NewClient() (*Client, error) { - retryPolicy := `{ - "methodConfig": [{ - "waitForReady": true, - "retryPolicy": { - "MaxAttempts": 4, - "InitialBackoff": ".01s", - "MaxBackoff": ".01s", - "BackoffMultiplier": 1.0, - "RetryableStatusCodes": [ "UNAVAILABLE" ] - } - }] - }` + retryPolicy := map[string]any{ + "methodConfig": []map[string]any{ + { + "waitForReady": true, + "retryPolicy": map[string]any{ + "MaxAttempts": 4, + "InitialBackoff": ".01s", + "MaxBackoff": ".01s", + "BackoffMultiplier": 1.0, + "RetryableStatusCodes": []string{"UNAVAILABLE"}, + }, + }, + }, + } + + bytes, err := json.Marshal(retryPolicy) + if err != nil { + return nil, fmt.Errorf("failed to marshal retry policy: %w", err) + } + + retryPolicyStr := string(bytes) - conn, err := grpc.Dial(fmt.Sprintf("%s:%s", "unix", socket), grpc.WithTransportCredentials(insecure.NewCredentials()), grpc.WithDefaultServiceConfig(retryPolicy)) + conn, err := grpc.Dial(fmt.Sprintf("%s:%s", "unix", socket), grpc.WithTransportCredentials(insecure.NewCredentials()), grpc.WithDefaultServiceConfig(retryPolicyStr)) if err != nil { return nil, fmt.Errorf("failed to dial pktmon server: %w", err) } @@ -79,20 +89,15 @@ func NewClient() (*Client, error) { func (p *Plugin) RunPktMonServer() error { p.stdWriter = &zapio.Writer{Log: p.l.Logger, Level: zap.InfoLevel} - p.errWriter = &zapio.Writer{Log: p.l.Logger, Level: zap.ErrorLevel} defer p.stdWriter.Close() + p.errWriter = &zapio.Writer{Log: p.l.Logger, Level: zap.ErrorLevel} + defer p.errWriter.Close() p.pktmonCmd = exec.Command("controller-pktmon.exe") p.pktmonCmd.Args = append(p.pktmonCmd.Args, "--socketpath", socket) p.pktmonCmd.Env = os.Environ() p.pktmonCmd.Stdout = p.stdWriter p.pktmonCmd.Stderr = p.errWriter - p.l.Info("setting up enricher since pod level is enabled \n") - p.enricher = enricher.Instance() - if p.enricher == nil { - return ErrNilEnricher - } - p.l.Info("calling start on pktmon stream server", zap.String("cmd", p.pktmonCmd.String())) // block this thread, and should it ever return, it's a problem @@ -107,6 +112,13 @@ func (p *Plugin) RunPktMonServer() error { func (p *Plugin) Start(ctx context.Context) error { ctx, cancel := context.WithCancel(ctx) + defer cancel() + + p.enricher = enricher.Instance() + if p.enricher == nil { + return ErrNilEnricher + } + go func() { err := p.RunPktMonServer() if err != nil { @@ -122,7 +134,7 @@ func (p *Plugin) Start(ctx context.Context) error { p.l.Info("creating pktmon client") client, err := NewClient() if err != nil { - return err + return fmt.Errorf("failed to create pktmon client before getting flows: %w", err) } str, err = client.GetFlows(ctx, &observerv1.GetFlowsRequest{}) @@ -141,53 +153,61 @@ func (p *Plugin) Start(ctx context.Context) error { case <-ctx.Done(): return fmt.Errorf("pktmon context cancelled: %w", ctx.Err()) default: - event, err := str.Recv() + err := p.GetFlow(str) if err != nil { - return fmt.Errorf("failed to receive pktmon event: %w", err) + return fmt.Errorf("failed to get flow from observer: %w", err) } + } + } +} - fl := event.GetFlow() - if fl == nil { - p.l.Error("received nil flow, flow proto mismatch from client/server?") - continue - } +func (p *Plugin) GetFlow(str observerv1.Observer_GetFlowsClient) error { + event, err := str.Recv() + if err != nil { + return fmt.Errorf("failed to receive pktmon event: %w", err) + } - ev := &v1.Event{ - Event: event.GetFlow(), - Timestamp: event.GetFlow().GetTime(), - } + fl := event.GetFlow() + if fl == nil { + p.l.Error("received nil flow, flow proto mismatch from client/server?") + return nil + } - if fl.GetType() == flow.FlowType_L7 { - dns := fl.GetL7().GetDns() - if dns != nil { - query := dns.GetQuery() - ans := dns.GetIps() - if dns.GetQtypes()[0] == "Q" { - p.l.Sugar().Debugf("query from %s to %s: request %s\n", fl.GetIP().GetSource(), fl.GetIP().GetDestination(), query) - } else { - p.l.Sugar().Debugf("answer from %s to %s: result: %+v\n", fl.GetIP().GetSource(), fl.GetIP().GetDestination(), ans) - } - } - } + ev := &v1.Event{ + Event: fl, + Timestamp: fl.GetTime(), + } - if p.enricher != nil { - p.enricher.Write(ev) + if fl.GetType() == flow.FlowType_L7 { + dns := fl.GetL7().GetDns() + if dns != nil { + query := dns.GetQuery() + ans := dns.GetIps() + if dns.GetQtypes()[0] == "Q" { + p.l.Sugar().Debugf("query from %s to %s: request %s\n", fl.GetIP().GetSource(), fl.GetIP().GetDestination(), query) } else { - p.l.Error("enricher is nil when writing event") + p.l.Sugar().Debugf("answer from %s to %s: result: %+v\n", fl.GetIP().GetSource(), fl.GetIP().GetDestination(), ans) } + } + } - // Write the event to the external channel. - if p.externalChannel != nil { - select { - case p.externalChannel <- ev: - default: - // Channel is full, drop the event. - // We shouldn't slow down the reader. - metrics.LostEventsCounter.WithLabelValues(utils.ExternalChannel, string(Name)).Inc() - } - } + if p.enricher != nil { + p.enricher.Write(ev) + } else { + p.l.Error("enricher is nil when writing event") + } + + // Write the event to the external channel. + if p.externalChannel != nil { + select { + case p.externalChannel <- ev: + default: + // Channel is full, drop the event. + // We shouldn't slow down the reader. + metrics.LostEventsCounter.WithLabelValues(utils.ExternalChannel, string(Name)).Inc() } } + return nil } func (p *Plugin) SetupChannel(ch chan *v1.Event) error { @@ -202,6 +222,13 @@ func New(_ *kcfg.Config) api.Plugin { } func (p *Plugin) Stop() error { + if p.pktmonCmd != nil { + err := p.pktmonCmd.Process.Kill() + if err != nil { + return fmt.Errorf("failed to kill pktmon server during stop: %w", err) + } + } + return nil }